
:root {
    --gold: #C5A059;
    --bg-dark: #020408;
    --accent-blue: #1e2a4a;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}





/* 1. Kill horizontal scroll forever */
html, body {
  overflow-x: hidden;
}

/* 2. Correct box model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 3. Prevent scrollbar width jump */
body.menu-open {
  position: fixed;
  width: 100%;
}

/* 4. Mobile overlay width fix */
.mobile-overlay {
  width: 100%;
  left: 0;
  right: 0;
}


/* Navbar */
/* --- STUNNING NAVBAR --- */
 .nav-island {
            position: fixed;
            top: 25px;
            left: 50%;
            transform: translateX(-50%);
            width: min(92%, 1100px);
            /* max-width: 1100px; */
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            padding: 12px 35px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.4s ease;

            height: 70px;              /* 🔥 lock height */
  padding: 0 35px;
        }

        /* Logo stays centered ALWAYS */
.logo {
  position: absolute;        /* 🔥 key */
  left: 50%;
  transform: translateX(-50%);

  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.6rem;         /* slightly smaller */
  letter-spacing: 4px;
  line-height: 1;            /* 🔥 prevents height jump */

  color: var(--gold);
  white-space: nowrap;
  margin-top: -52px;
}

.logo {
    justify-self: center;
    text-decoration: none;
    text-shadow: 0 0 15px rgba(243,207,122,0.4);
}

        .nav-links-desktop a {
            color: white;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 2px;
            margin: 0 15px;
            transition: 0.3s;
        }

        .nav-links-desktop a:hover {
            color: var(--gold);
        }

        .btn-contact {
            background: var(--gold);
            color: black !important;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.75rem;
        }

        /* --- HAMBURGER MENU --- */
        .ham-btn {
            width: 30px;
            height: 20px;
            position: relative;
            cursor: pointer;
            display: none; /* Hidden on desktop */
            z-index: 1100;
        }

        .ham-line {
            width: 100%;
            height: 2px;
            background-color: var(--gold);
            position: absolute;
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .line-1 { top: 0; }
        .line-2 { bottom: 0; }

        /* Cross State */
        .ham-btn.active .line-1 {
            transform: rotate(45deg);
            top: 9px;
            background-color: #fff;
        }
        .ham-btn.active .line-2 {
            transform: rotate(-45deg);
            bottom: 9px;
            background-color: #fff;
        }

        /* --- MOBILE OVERLAY --- */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(5, 5, 8, 0.98);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 999;
            transform: translateY(-100%);
            transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        }

        .mobile-overlay.active {
            transform: translateY(0);
        }

        .mobile-overlay a {
            font-family: 'Cinzel Decorative';
            font-size: 2.5rem;
            color: white;
            text-decoration: none;
            margin: 15px 0;
            opacity: 0;
        }





/* ---------------- RESPONSIVE NAVBAR ---------------- */

@media (max-width: 992px) {
    .nav-island {
        padding: 14px 22px;
    }

    .nav-links-desktop {
        display: none;
    }

    .ham-btn {
        display: block;
    }

    .logo {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }
}

/* Small Phones */
@media (max-width: 576px) {
    .nav-island {
        width: 95%;
        top: 15px;
        padding: 12px 18px;
    }

    .logo {
        font-size: 1.2rem;
    }
}


.btn-primary-cosmic {
    background: var(--gold);
    color: #000;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 0;
}

.btn-primary-cosmic:hover {
    border: 1px solid #fff;
}















.contact-hero {
    height: 80vh;
    position: relative;
    overflow: hidden;
    background: #000; /* Deep space black */
}

#starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.z-2 {
    z-index: 2; /* Ensures text stays above the stars */
}

.hero-line {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin: 20px auto;
    transition: width 1.5s ease-in-out;
}

/* Add a vignette effect to make the center text pop */
.contact-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: 1;
}




/* Glass Form */
.glass-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(15px);
}

.input-group-astral input, 
.input-group-astral select, 
.input-group-astral textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding: 15px;
    color: white;
    outline: none;
    transition: 0.3s;
}

.input-group-astral select option {
    background: #17191C;
    color: #DEFFFF;
    
}

.input-group-astral input:focus {
    border-bottom-color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
}

.btn-send {
    background: var(--gold);
    color: black;
    border: none;
    padding: 15px;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 10px;
    transition: 0.4s;
}

.btn-send:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}





/* Astral Accordion Styles */
.astral-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-header {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.faq-header i {
    transition: transform 0.4s ease;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Active State Styles */
.faq-item.active {
    background: rgba(197, 160, 89, 0.05);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.15);
}

.faq-item.active .faq-body {
    max-height: 200px;
    margin-top: 15px;
}

.faq-item.active .faq-header i {
    transform: rotate(45deg);
    color: white !important;
}

.faq-item:hover {
    border-color: rgba(197, 160, 89, 0.5);
}














/* ================= SIMPLE CENTERED FOOTER ================= */

.astral-footer-simple {
    background: #020408;
    padding: 40px 0 40px;
    text-align: center;
}

.footer-logo-center {
    margin-bottom: 35px;
}

.footer-logo {
    font-family: 'Cinzel Decorative', serif;
    letter-spacing: 6px;
    color: var(--gold);
    font-size: 2.4rem;
}

/* Links */
.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-links-row a {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links-row a:hover {
    color: var(--gold);
}

/* CTA */
.footer-cta-row {
    margin-bottom: 50px;
}

/* Copy */
.footer-copy {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-logo {
        font-size: 2rem;
    }
}
