/* --- Google Fonts Import --- */
/* Fixed: Restored the true Montserrat import so your font styles render properly */
@import url('https://googleapis.com');

/* --- Base Reset & Core Setup --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', -apple-system, sans-serif; 
    overflow-x: hidden; 
}

/* --- Fixed Background Slider --- */
#bg-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1.2s ease-in-out; 
}

/* Soft 40% dark overlay veil ensures text always stands out naturally */
#bg-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40); 
}

/* --- Top Navigation Header Layout --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem; 
    z-index: 10;
    pointer-events: none; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.logo-container {
    pointer-events: auto; 
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.logo {
    height: 60px; 
    width: auto;
    display: block;
    border-radius: 50%;
}

/* --- Header Text Transparent Background Pill --- */
.header-title {
    color: rgba(255, 255, 255, 0.95); 
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0; 
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

    /* MODIFIED: Reduced background tint from 0.3 down to an incredibly subtle 0.10 */
    background: rgba(0, 0, 0, 0.10); 
    padding: 0.6rem 1.2rem;
    border-radius: 50px; 
    
    /* MODIFIED: Softened blur and thinned out the border line to make it less prominent */
    backdrop-filter: blur(6px); 
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.06); 
}

/* Right Column Spacer to perfectly hold the center position math */
.header-spacer {
    flex: 1;
}

/* --- Main Responsive Content Overlay --- */
.content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; 
    padding: 1.5rem;
}

/* --- Premium Semi-Transparent Glass Container for Center Text --- */
.content-box {
    text-align: center;
    max-width: 650px; 
    width: 100%;
    padding: 2.5rem 2rem; 
    border-radius: 24px; 
    
    /* MODIFIED: Lowered background plate opacity from 0.35 to 0.12 to look barely there */
    background: rgba(0, 0, 0, 0.12); 
    
    /* MODIFIED: Softened the backdrop blur so the background isn't heavily frosted */
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px); 
    
    /* MODIFIED: Faded the white border away so the container edge blends seamlessly */
    border: 1px solid rgba(255, 255, 255, 0.08);
    
    /* MODIFIED: Lightened the box shadow so it sits gently on the page */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Content Headings inside the glass panel */
.content-box h1 {
    color: #4c9e41; 
    font-size: 2.2rem; 
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 900; 
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); 
}

/* Handles your secondary h1 element ("Behind these doors...") */
.content-box h1:last-of-type {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 0;
}

.content-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* --- Media Queries (Tablet & Desktop Scalability) --- */
@media (min-width: 768px) {
    .site-header {
        padding: 1.5rem 2rem; 
    }
    
    .logo {
        height: 80px; 
    }

    .header-title {
        font-size: 1.3rem;
        padding: 0.8rem 2rem; 
    }

    .content-box {
        padding: 4rem 3rem; 
    }

    .content-box h1 {
        font-size: 2.5rem; 
    }
    
    .content-box h1:last-of-type {
        font-size: 2rem;
    }

    .content-box p {
        font-size: 1.35rem;
    }
}
