/* structure.css */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { overflow-x: hidden; }

/* Sticky Header Layout */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 15px 0;
}

.logo-container { padding-bottom: 10px; }
.brand-logo { max-width: 150px; height: auto; display: block; margin: 0 auto; }

/* Desktop Navigation Grid */
.main-nav { width: 100%; }
.nav-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
}

.nav-grid li { position: relative; }

/* Dropdown Logic */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    min-width: 200px;
    text-align: center;
}
.has-dropdown:hover .dropdown { display: block; }

/* Mobile Menu Logic (< 768px) */
.menu-toggle { display: none; }
.menu-icon { display: none; cursor: pointer; font-size: 2rem; position: absolute; top: 15px; right: 20px; }

@media (max-width: 768px) {
    .menu-icon { display: block; }
    .main-nav { display: none; width: 100%; }
    .nav-grid { flex-direction: column; gap: 15px; align-items: center; padding: 20px 0; }
    .dropdown { position: relative; left: 0; transform: none; padding-top: 10px; }
    /* Checkbox hack to open menu */
    .menu-toggle:checked ~ .main-nav { display: block; }
}

/* Mobile-Optimized Parallax Logic */
.parallax-pane {
    position: relative;
    min-height: 555px; 
    display: flex;
    align-items: flex-end; /* FIX: Drops the text box to the bottom */
    justify-content: center;
    padding-bottom: 60px; /* Gives it breathing room from the edge */
    overflow: hidden;
}

/* Update this in structure.css */
/* Update this in structure.css */
.parallax-pane::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: var(--bg-image);
    
    /* FIX: Set this back to exact center for Desktop */
    background-position: center center; 
    
    background-size: cover;
    background-attachment: fixed; 
    z-index: -1;
}

/* iOS Parallax Fix */
@supports (-webkit-touch-callout: none) {
    .parallax-pane::before {
        background-attachment: scroll; /* Prevents iOS visual glitch */
    }
}

.standard-pane {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pane-content {
    text-align: center;
    padding: 20px;
    z-index: 1;
}

.main-footer { text-align: center; padding: 40px 20px; width: 100%; }
/* ==========================================================================
   Footer Attribution (Disability-Owned Tag)
   ========================================================================== */
.footer-attribution {
    font-family: 'Raleway', sans-serif;
    font-weight: 800; /* Bold to establish authority */
    font-size: 0.8rem;
    letter-spacing: 2.5px; /* Wide spacing for an architectural feel */
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px; /* Gives it breathing room above the copyright */
    
    /* The Signature Gold Gradient Applied to Text */
    background: linear-gradient(120deg, #B38728, #FCF6BA, #BF953F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; 

    /* A very soft ambient glow so it pops off the deep black */
    filter: drop-shadow(0px 2px 4px rgba(191, 149, 63, 0.25));

    /* Flexbox to perfectly align the text with the side accent lines */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* --- Architectural Accent Lines --- */
.footer-attribution::before,
.footer-attribution::after {
    content: '';
    display: block;
    width: 40px; /* Length of the lines */
    height: 1px;
}

/* Fades from transparent to gold */
.footer-attribution::before {
    background: linear-gradient(90deg, transparent, #BF953F); 
}

/* Fades from gold to transparent */
.footer-attribution::after {
    background: linear-gradient(270deg, transparent, #BF953F);
}

/* Mobile Adjustment to keep lines proportionate */
@media (max-width: 768px) {
    .footer-attribution {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        gap: 10px;
    }
    .footer-attribution::before,
    .footer-attribution::after {
        width: 20px;
    }
}

/* ==========================================================================
   Splash Page Hero Box (.splash-page-copy1)
   ========================================================================== */

.splash-page-copy1 {
    background-color: rgba(5, 5, 5, 0.85); /* Deep dark background */
    border: 1px solid #BF953F; /* Signature Gold Border */
    border-radius: 6px;
    
    /* THE FIX: Generous padding. 60px top/bottom, 40px left/right */
    padding: 60px 40px; 
    
    max-width: 800px;
    margin: 0 auto; /* Perfectly centers the box horizontally */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); /* Adds floating depth */
}

/* Spacing out the internal elements smoothly */
.splash-page-copy1 h2 {
    margin-bottom: 25px; /* Pushes the paragraph down away from the header */
}

.splash-page-copy1 p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.splash-page-copy1 .shimmer-paragraph {
    margin-top: 30px;
    margin-bottom: 40px; /* Pushes the button down */
}

/* Ensuring the button container centers perfectly */
.splash-page-copy1 .button-container {
    text-align: center;
    margin-top: 10px;
}

/* --- Mobile Optimization --- */
@media (max-width: 768px) {
    .splash-page-copy1 {
        /* Slightly tighter padding on mobile so it fits the screen better */
        padding: 40px 20px; 
        margin: 0 15px; /* Prevents the box from touching the very edge of the phone screen */
    }
}
/* ==========================================================================
   Splash Page Hero Box (.splash-page-copy1)
   ========================================================================== */

.splash-page-copy1 {
    background-color: rgba(5, 5, 5, 0.85); 
    border: 1px solid #BF953F; 
    border-radius: 6px;
    padding: 30px 40px; 
    max-width: 800px;
    
    /* THE FIX: 80px space on top and bottom, auto centers left and right */
    margin: 30px auto; 
    
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); 
}

/* ... keep the paragraph and button spacing exactly as it was ... */
.splash-page-copy1 h2 { margin-bottom: 25px; }
.splash-page-copy1 p { margin-bottom: 20px; line-height: 1.6; }
.splash-page-copy1 .shimmer-paragraph { margin-top: 30px; margin-bottom: 40px; }
.splash-page-copy1 .button-container { text-align: center; margin-top: 10px; }


/* --- Mobile Optimization --- */
@media (max-width: 768px) {
    .splash-page-copy1 {
        padding: px 20px; 
        
        /* THE FIX FOR MOBILE: 40px top/bottom space, 15px side space */
        margin: 40px 15px; 
    }
}