:root {
    --orange: #D85701;
    --black: #000000;
    --white: #ffffff;
    --grey: #121212;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Setup */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background-color: var(--black); 
    color: var(--white); 
    font-family: 'Montserrat', sans-serif; 
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3 { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; line-height: 1; }
.text-orange { color: var(--orange); }
.center { text-align: center; }

/* Navigation (Hidden by default) */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 25px 50px; background: rgba(0,0,0,0.9);
    backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.05);
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}
.navbar.visible { transform: translateY(0); }

.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; }
.nav-logo { height: 35px; }
.nav-links a { color: white; text-decoration: none; font-weight: 700; font-size: 0.8rem; margin-left: 35px; letter-spacing: 1px; }
.nav-cta { background: var(--orange); padding: 12px 25px; border-radius: 4px; }

/* Hero Solar System */
.hero {
    min-height: 100vh; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    padding: 150px 20px;
    position: relative;
    overflow: hidden;
}

/* Layer 1: The "Dust" - very small, high density stars */
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; /* Send to back */
    background-image: 
        /* Set 1 */
        radial-gradient(1px 1px at 10% 10%, #ffffff, transparent),
        radial-gradient(1px 1px at 20% 50%, #ffffff, transparent),
        radial-gradient(1px 1px at 50% 30%, #ffffff, transparent),
        radial-gradient(1px 1px at 80% 90%, #ffffff, transparent),
        radial-gradient(1px 1px at 90% 20%, #ffffff, transparent),
        radial-gradient(1px 1px at 40% 70%, #ffffff, transparent),
        /* Set 2 (Added for density) */
        radial-gradient(1px 1px at 5% 80%, #ffffff, transparent),
        radial-gradient(1px 1px at 95% 5%, #ffffff, transparent),
        radial-gradient(1px 1px at 30% 90%, #ffffff, transparent),
        radial-gradient(1px 1px at 70% 40%, #ffffff, transparent),
        radial-gradient(1px 1px at 60% 10%, #ffffff, transparent),
        radial-gradient(1px 1px at 15% 30%, #ffffff, transparent);
    /* Smaller tile size (200px) means these 12 dots repeat very frequently */
    background-size: 200px 200px; 
    opacity: 0.3;
}

/* Layer 2: Larger, brighter stars with a twinkle effect */
.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    background-image: 
        /* Varying sizes from 1.5px to 3px */
        radial-gradient(2px 2px at 15% 15%, #ffffff, transparent),
        radial-gradient(2px 2px at 65% 35%, #ffffff, transparent),
        radial-gradient(3px 3px at 85% 85%, #ffffff, transparent),
        radial-gradient(1.5px 1.5px at 35% 75%, #ffffff, transparent),
        radial-gradient(2px 2px at 50% 50%, #ffffff, transparent),
        radial-gradient(2.5px 2.5px at 5% 95%, #ffffff, transparent),
        radial-gradient(1.5px 1.5px at 90% 10%, #ffffff, transparent);
    /* Larger tile size for the bigger stars so they don't look too patterned */
    background-size: 400px 350px; 
    opacity: 0.6;
    /* Added a slight scale pulse to the twinkle */
    animation: twinkle 5s infinite linear alternate;
}

.solar-system {
    position: relative; width: 600px; height: 450px;
    display: flex; align-items: center; justify-content: center;
}

.sun {
    width: 280px; height: 280px; background: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 10; box-shadow: 0 0 80px rgba(255,255,255,0.2);
}
.sun-img { width: 190px; }
.sun-corona {
    position: absolute; width: 120%; height: 120%;
    border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

/* Orbiting Mechanics (Lines Hidden) */
.orbit-wrap {
    position: absolute; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    animation: rotate infinite linear;
}

.planet {
    position: absolute; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; text-align: center;
    padding: 20px; font-weight: 900; font-size: 0.7rem; color: white;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.6);
}

/* Lighting Logic: Orange faces center, black faces away */
.planet-1 { 
    width: 180px; height: 180px; top: 0; left: 0;
    background: radial-gradient(circle at 100% 100%, var(--orange) 0%, #000 80%); 
}
.planet-2 { 
    width: 160px; height: 160px; top: 20%; right: -50px;
    background: radial-gradient(circle at 0% 50%, var(--orange) 0%, #000 80%); 
}
.planet-3 { 
    width: 140px; height: 140px; bottom: 0; left: 50%;
    background: radial-gradient(circle at 50% 0%, var(--orange) 0%, #000 80%); 
}

/* Orbit Animation Durations */
.planet-1-orbit { animation-duration: 20s; }
.planet-2-orbit { animation-duration: 25s; animation-direction: reverse; }
.planet-3-orbit { animation-duration: 30s; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
/* Counter-rotate text so it stays upright */
.planet span { animation: counter-rotate infinite linear; display: block; width: 100%; }
.planet-1-orbit span { animation-duration: 20s; }
.planet-2-orbit span { animation-duration: 25s; animation-direction: reverse; }
.planet-3-orbit span { animation-duration: 30s; }

@keyframes counter-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Twinkle Animation */
@keyframes twinkle {
    0% { opacity: 0.4; transform: scale(0.9); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

/* Ensure existing content stays above stars */
.solar-system, .hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content { text-align: center; margin-top: 150px; max-width: 900px; }
.experience-badge { color: var(--orange); font-weight: 900; font-size: 0.8rem; margin-bottom: 20px; }
.hero-content h1 { font-size: 4rem; margin-bottom: 25px; letter-spacing: -2px; }
.hero-content p { font-size: 1.2rem; opacity: 0.6; margin-bottom: 45px; line-height: 1.8; }
.btn-main { background: var(--orange); color: white; padding: 18px 40px; border-radius: 4px; text-decoration: none; font-weight: 900; margin-right: 15px; }
.btn-sub { border: 2px solid white; color: white; padding: 16px 40px; border-radius: 4px; text-decoration: none; font-weight: 900; }

/* Sections */
section { padding: 120px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 3.5rem; margin-bottom: 40px; }
.section-title.dark { color: var(--black); }

/* --- Section Navigation Buttons --- */
.cta-row {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Ensure buttons stand out on the white pricing background */
.pricing .btn-main {
    box-shadow: 0 10px 20px rgba(216, 87, 1, 0.2);
}

/* Responsive adjustment for small screens */
@media (max-width: 600px) {
    .cta-row {
        flex-direction: column;
        align-items: center;
    }
    .cta-row a {
        width: 100%;
        text-align: center;
        margin-right: 0 !important;
    }
}

/* About Us / Philosophy */
.about-us { background-color: #080808; padding: 120px 20px; }
.about-intro { max-width: 800px; margin: 0 auto 60px; font-size: 1.2rem; line-height: 1.8; opacity: 0.9; }

.results-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    margin-bottom: 80px; 
}

.result-item { 
    padding: 40px; 
    background: rgba(255,255,255,0.02); 
    border-left: 3px solid var(--orange);
    transition: var(--transition);
}
.result-item:hover { background: rgba(255,255,255,0.05); transform: translateY(-5px); }

.result-stat { 
    display: block; 
    font-family: 'Archivo Black'; 
    font-size: 2.5rem; 
    color: var(--orange); 
    margin-bottom: 10px; 
}

.result-item h4 { font-size: 1rem; margin-bottom: 15px; letter-spacing: 1px; }
.result-item p { font-size: 0.9rem; opacity: 0.7; line-height: 1.6; }

.promise-container { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    margin-bottom: 60px;
}

.promise-card { 
    padding: 50px; 
    border-radius: 4px; 
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.promise-card.learner { background: linear-gradient(45deg, #111, #000); }
.promise-card.parent { background: var(--orange); color: white; }
.promise-card.parent h3 { color: black; }

.promise-card h3 { margin-bottom: 20px; font-size: 1.5rem; }
.promise-card p { line-height: 1.7; font-weight: 500; }

.holiday-notice { 
    padding: 20px; 
    border: 1px dashed var(--orange); 
    display: inline-block; 
    width: 100%; 
    border-radius: 10px; 
    opacity: 0.8;
}

@media (max-width: 768px) {
    .promise-container { grid-template-columns: 1fr; }
}

/* Pillars */
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; }
.pillar { background: var(--grey); padding: 60px 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }
.p-icon { color: var(--orange); font-size: 3rem; font-family: 'Archivo Black'; margin-bottom: 20px; }

/* --- Programs Section Styling --- */
.programs { background: #000; padding: 120px 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.program-subtitle { max-width: 800px; margin: 0 auto 60px; opacity: 0.7; font-size: 1.1rem; line-height: 1.6; }

.program-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    margin-bottom: 80px;
}

.program-card { 
    background: #111; 
    padding: 40px; 
    border-radius: 4px; 
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}
.program-card:hover { border-color: var(--orange); transform: translateY(-5px); }
.program-card.highlight { border: 1px solid rgba(216, 87, 1, 0.3); background: rgba(216, 87, 1, 0.05); }

.p-tag { 
    font-size: 0.65rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    color: var(--orange); 
    letter-spacing: 2px; 
    margin-bottom: 15px; 
}
.program-card h3 { font-size: 1.2rem; margin-bottom: 15px; }
.program-card p { font-size: 0.9rem; opacity: 0.6; line-height: 1.6; }

/* Subject Matrix */
.subject-matrix { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px; 
    background: #080808; 
    padding: 60px; 
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.03);
}

.matrix-head { display: flex; align-items: center; margin-bottom: 25px; }
.m-icon { color: var(--orange); font-size: 2rem; margin-right: 15px; font-family: 'Archivo Black'; }
.matrix-column h4 { font-size: 1.4rem; letter-spacing: 1px; }

.matrix-column ul { list-style: none; }
.matrix-column ul li { 
    padding: 12px 0; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    font-size: 0.9rem; 
    opacity: 0.8;
    display: flex;
    align-items: center;
}
.matrix-column ul li::before { 
    content: "•"; 
    color: var(--orange); 
    margin-right: 10px; 
    font-weight: bold; 
}

@media (max-width: 768px) {
    .subject-matrix { padding: 30px; }
}

/* Pricing */
.pricing { background: var(--white); color: var(--black); border-radius: 80px 80px 0 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 60px; }
.card { background: #f8f8f8; padding: 50px 40px; border-radius: 30px; display: flex; flex-direction: column; position: relative; border: 1px solid #eee; }
.card.featured { background: var(--black); color: white; transform: scale(1.05); box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
.card.featured h3 { color: var(--orange); }
.card-list { list-style: none; flex-grow: 1; margin: 30px 0; }
.card-list li { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.9rem; }
.card.featured .card-list li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.card-price { background: #eee; padding: 15px; border-radius: 5px; text-align: center; font-weight: 900; font-size: 1.2rem; }
.card-price.orange { background: var(--orange); color: white; }
.card-price.black { background: black; color: var(--orange); }
.popular { position: absolute; top: 20px; right: 20px; background: var(--orange); color: white; font-size: 0.6rem; padding: 5px 12px; font-weight: 900; border-radius: 20px; }
.card.mastery-highlight { border: 7px solid var(--orange); }

/* --- Inquiry & Scheduling Section --- */
.inquiry-section { background-color: #000; padding: 120px 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.form-container { max-width: 800px; margin: 0 auto; background: #0a0a0a; border-radius: 20px; padding: 60px; border: 1px solid rgba(255,255,255,0.05); }

.form-header { display: flex; align-items: center; margin-bottom: 40px; }
.step-count { font-family: 'Archivo Black'; font-size: 1.5rem; color: var(--orange); margin-right: 20px; border: 1px solid var(--orange); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.input-group { display: flex; flex-direction: column; margin-bottom: 25px; }
.input-group label { font-size: 0.75rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; margin-bottom: 10px; color: rgba(255,255,255,0.5); }

.input-group input, .input-group select { 
    background: #151515; border: 1px solid rgba(255,255,255,0.1); 
    padding: 15px; border-radius: 5px; color: white; font-family: 'Montserrat'; outline: none; transition: 0.3s;
}
.input-group input:focus { border-color: var(--orange); background: #1a1a1a; }

.school-details-box { background: rgba(255,255,255,0.02); padding: 30px; border-radius: 10px; margin: 30px 0; border: 1px dashed rgba(255,255,255,0.1); }
.school-details-box h4 { margin-bottom: 20px; font-size: 0.9rem; color: var(--orange); }

.appointment-info { background: rgba(216, 87, 1, 0.1); padding: 30px; border-radius: 10px; margin-bottom: 40px; line-height: 1.6; }
.appointment-info p:first-child { color: var(--orange); font-size: 1.1rem; margin-bottom: 10px; }

/* Time Grid */
.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; margin-top: 15px; }
.time-slot { background: #151515; border: 1px solid rgba(255,255,255,0.1); padding: 15px; text-align: center; border-radius: 4px; cursor: pointer; transition: 0.3s; font-size: 0.8rem; font-weight: 700; }
.time-slot:hover { border-color: var(--orange); color: var(--orange); }
.time-slot.selected { background: var(--orange); color: white; border-color: var(--orange); }

.time-break { grid-column: 1 / -1; font-size: 0.65rem; text-align: center; padding: 20px; text-transform: uppercase; letter-spacing: 3px; opacity: 0.3; background: rgba(255,255,255,0.02); border-radius: 4px; }

.hidden { display: none; }
.cta-group-form { display: flex; justify-content: space-between; margin-top: 40px; }

@media (max-width: 600px) { .input-row { grid-template-columns: 1fr; } .form-container { padding: 30px; } }

/* Footer */
.footer {
    background-color: #050505;
    padding: 100px 20px 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo { height: 30px; margin-bottom: 25px; }
.footer-motto { font-size: 0.9rem; line-height: 1.8; margin-bottom: 25px; max-width: 300px; }

.footer-col h4 {
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { 
    color: rgba(255,255,255,0.6); 
    text-decoration: none; 
    font-size: 0.85rem; 
    transition: 0.3s; 
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 5px; }

.footer-email-link { 
    display: block; 
    color: var(--white); 
    font-weight: 700; 
    text-decoration: none; 
    margin: 15px 0; 
    font-size: 1rem;
}
.footer-email-link:hover { color: var(--orange); }

.status-indicator {
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 25px;
    color: #4CAF50; /* Success Green */
}
.status-indicator .dot {
    height: 8px; width: 8px; background: #4CAF50;
    border-radius: 50%; margin-right: 10px;
    box-shadow: 0 0 10px #4CAF50;
}

/* Footer Bottom Bar */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.footer-legal a {
    margin-left: 20px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: 0.3s;
}
.footer-legal a:hover { color: var(--white); }
.footer-credit { opacity: 0.3; font-weight: 900; }

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-legal a { margin: 0 10px; display: inline-block; }
}

/* ============================================================
   MOBILE & TABLET OPTIMIZATION (THE "PERK" RESPONSIVE ENGINE)
   ============================================================ */

@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
    .solar-system { transform: scale(0.8); } /* Scales the entire animation */
}

@media (max-width: 768px) {
    /* Navbar Scaling */
    .navbar { padding: 15px 20px; }
    .nav-links a { margin-left: 15px; font-size: 0.7rem; }
    .nav-cta { padding: 8px 15px; }

    /* Hero Scaling */
    .hero { padding: 100px 20px 60px; }
    .solar-system { 
        width: 100vw; 
        height: 350px; 
        transform: scale(0.6); /* Shrinks the galaxy to fit phone widths */
        margin-top: -50px;
    }
    
    .hero-content { margin-top: 50px; }
    .hero-content h1 { font-size: 2.2rem; letter-spacing: -1px; }
    .hero-content p { font-size: 1rem; }
    .cta-group { display: flex; flex-direction: column; gap: 15px; align-items: center; }
    .btn-main, .btn-sub { width: 100%; max-width: 300px; margin-right: 0; text-align: center; }

    /* About Us / Results */
    .section-title { font-size: 2.2rem; }
    .about-intro { font-size: 1rem; }
    .result-stat { font-size: 2rem; }
    .promise-card { padding: 30px; }

    /* Programs Matrix */
    .subject-matrix { padding: 20px; grid-template-columns: 1fr; }
    .matrix-column { margin-bottom: 30px; }

    /* Pricing */
    .pricing { border-radius: 40px 40px 0 0; }
    .pricing-grid { gap: 20px; padding: 0 10px; }
    .card.featured { transform: scale(1); margin: 20px 0; } /* Remove scale on mobile to prevent overlap */
    
    /* Form */
    .form-container { padding: 25px 20px; }
    .form-header h3 { font-size: 1.1rem; }
    .time-grid { grid-template-columns: 1fr 1fr; } /* Two columns for time slots on mobile */
    .cta-group-form { flex-direction: column-reverse; gap: 15px; }
    .cta-group-form button { width: 100%; }
}

@media (max-width: 480px) {
    /* Extreme Small Screens (iPhone SE, etc) */
    .nav-logo { height: 25px; }
    .nav-links { display: none; } /* Hide text links to prevent crowding */
    .navbar .nav-container { justify-content: center; }
    
    .solar-system { transform: scale(0.5); }
    .hero-content h1 { font-size: 1.8rem; }
    
    .section-title { font-size: 1.8rem; }
    .result-item { padding: 25px; }
    
    .footer-main { text-align: center; }
    .footer-col { display: flex; flex-direction: column; align-items: center; }
    .status-indicator { justify-content: center; }
}

/* Fix for the Solar System Orbits on small heights */
@media (max-height: 700px) and (orientation: landscape) {
    .hero { min-height: 140vh; }
}

/* --- Mobile Menu Logic --- */
.menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 2000;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: 0.3s ease;
}

@media (max-width: 850px) {
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen */
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1500;
    }

    .nav-links.active { right: 0; } /* Slides in */

    .nav-links a {
        margin: 20px 0;
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    /* Animate Hamburger to 'X' when active */
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ============================================================
   MOBILE TWEAKS: NAVIGATION, ORBITS, AND FOOTER
   ============================================================ */

@media (max-width: 850px) {
    /* 1 & 2. Logo and Hamburger Placement */
    .navbar .nav-container {
        justify-content: space-between !important; /* Forces Logo Left, Hamburger Right */
        align-items: center;
        width: 100%;
        padding: 0 10px;
    }

    .nav-logo {
        height: 50px !important; /* Bigger Logo for visibility */
        margin: 0;
    }

    .menu-toggle {
        margin: 0;
        padding: 10px; /* Larger hit area for thumbs */
    }

    /* 3. Solar System: Wider Orbits */
    /* We increase the size of the orbit wraps so planets stay outside the 280px sun */
    .orbit-wrap {
        width: 140%; /* Pushes everything further out */
        height: 140%;
    }

    .planet-1 { top: -20px; left: -20px; width: 150px; height: 150px; }
    .planet-2 { top: 15%; right: -80px; width: 130px; height: 130px; }
    .planet-3 { bottom: -30px; left: 60%; width: 110px; height: 110px; }

    /* Scaling the system to ensure the wider orbits don't bleed off screen */
    .solar-system {
        transform: scale(0.45); 
        height: 400px;
    }
}

/* 4. Footer Social Logos */
.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.footer-socials a {
    color: rgba(255,255,255,0.6);
    font-size: 1.4rem; /* Makes icons prominent */
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--orange);
    transform: translateY(-3px);
}

/* Ensure Logo remains left-aligned even on tiny screens */
@media (max-width: 480px) {
    .navbar .nav-container {
        justify-content: space-between !important;
    }
    .nav-logo {
        height: 45px !important;
    }
}