@import url('https://fonts.googleapis.com/css2?family=Quattrocento:wght@400;700&display=swap');

:root {
    --luxury-white: #eceeed;
    --loretto-brown: #5c4a3c;
    --transition-speed: 2.5s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #000;
    color: var(--luxury-white);
    font-family: "futura-100-book", sans-serif;
    font-weight: 400;
    overflow: hidden;
}

/* --- VIDEO BACKGROUND --- */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* --- FULLSCREEN MENU --- */
.menu-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #31261d;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.menu-link {
    font-family: "futura-100-book", sans-serif;
    font-size: 34px;
    font-weight: 400;
    color: var(--luxury-white);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-rendering: geometricPrecision;
}

.menu-link:hover {
    opacity: 0.5;
    transform: scale(1.05);
}

.menu-close {
    position: absolute;
    top: 40px;
    left: 15vw;
    font-size: 1.5rem;
    cursor: pointer;
    font-family: "futura-100-book", sans-serif;
    font-weight: 400;
    color: var(--luxury-white);
    transition: opacity 0.3s;
}

.menu-close:hover {
    opacity: 0.5;
}

.stage-header {
    position: fixed; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 70vw;
    height: 18px; 
    display: flex;
    justify-content: space-between;
    align-items: center; 
    margin-top: 40px; 
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 100;
}

.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 26px; 
    z-index: 8000;
}

.burger-menu {
    width: 25px; height: 10px;
    display: flex; flex-direction: column; 
    justify-content: space-between;
    cursor: pointer;
}
.burger-menu span { width: 100%; height: 1px; background: #fff; }

/* --- SLIDESHOW ENGINE --- */
.slider-container { position: fixed; inset: 0; z-index: 0; }
.slide {
    position: absolute; inset: 0;
    background-size: cover; 
    background-position: center;
    opacity: 0; 
    transition: opacity var(--transition-speed) ease-in-out;
    filter: brightness(0.9);
    overflow: hidden;
}
.slide.active { opacity: 1; z-index: 2; }

/* --- CINEMA SMOKE --- */
.cinema-smoke {
    position: fixed; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
    filter: blur(100px); pointer-events: none; z-index: 5;
    animation: rotateSmoke 60s infinite linear;
}
@keyframes rotateSmoke { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* --- CENTERED FOOTER CAPTION --- */
.item-image-caption {
    position: fixed; 
    bottom: 60px; 
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 30px; 
    line-height: 1;
    letter-spacing: 1px; 
    text-transform: uppercase;
    text-rendering: geometricPrecision;
    transition: opacity 1s; 
    z-index: 6;
    font-family: "futura-100-book", sans-serif;
}

.item-image-caption .first-word {
    font-family: 'Quattrocento', serif;
    font-weight: 100;
    font-size: 34px;
    font-style: italic;
    transform: skewX(-8deg); 
    -webkit-text-stroke: 0.2px rgba(0,0,0,0.5);
    text-rendering: geometricPrecision;
    letter-spacing: 0px; 
}

/* --- BROADCAST CONTAINER --- */
.enter-broadcast-container.header-version {
    display: flex; 
    align-items: center; 
    gap: 12px;
}

.button-text {
    font-size: 0.7rem; 
    letter-spacing: 2px; 
    text-transform: uppercase;
    color: var(--luxury-white); 
    opacity: 0.8;
}

.play-circle {
    width: 28px; 
    height: 28px;
    background-color: var(--loretto-brown);
    border-radius: 50%;
    display: flex; 
    justify-content: center; 
    align-items: center;
    cursor: pointer; 
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.play-circle:hover { transform: scale(1.1); background-color: #7a6352; }

.play-icon {
    width: 0; height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
    margin-left: 2px;
}

/* --- ABOUT PAGE SPECIFIC STYLES --- */

.about-page {
    overflow-y: auto !important;
    background-color: #000;
    /* Smooth scrolling feel */
    scroll-behavior: smooth;
}

/* 1. Hero Image sitting on top */
.hero-image-container {
    width: 100%;
    height: 100vh; /* Takes up full screen height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the area without stretching */
    filter: brightness(0.8);
}

/* 2. Content Wrapper below the image */
.about-content-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100px; /* Space after the hero image */
    padding-bottom: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000; /* Ensures background is solid black behind text */
}

.content-block {
    width: 40vw;
    margin-bottom: 120px; /* Increased spacing for better luxury "air" */
}

/* Typography styles (Keep these as they were) */
.bespoke-text {
    font-family: "futura-100-book", sans-serif;
    font-size: 24px;
    line-height: 1.6; /* Refined line height for better reading */
    letter-spacing: 1px;
    color: var(--luxury-white);
    text-rendering: geometricPrecision;
}

.bespoke-text .first-word {
    font-family: 'Quattrocento', serif;
    font-weight: 100;
    font-size: 25px;
    font-style: italic;
    transform: skewX(-6deg);
    display: inline-block;
    margin-right: 1px;
    -webkit-text-stroke: 0.2px rgba(0,0,0,0.5);
    letter-spacing: 0px;
}

.about-divider {
    width: 40vw;
    border: none;
    border-top: 1px solid var(--loretto-brown);
    margin-bottom: 80px;
    opacity: 0.6;
}

/* --- BOX MODEL FOOTER CONTROL --- */

.footer-lockup {
    width: 70vw; /* Constrained width per your image */
    margin: 10% auto; /* Responsive vertical spacing */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-box {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    width: 100%;
    display: block;
    line-height: 0.7;
    margin: 0;
}

/* The class that triggers the fade */
.footer-box.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Individual Box Offsets */
.box-1 {
    /* Pushes Line 1 slightly down toward Line 2 */
    margin-bottom: 3%; 
}

.box-2 {
    /* Pulls Line 2 closer to Line 1 and 3 */
    margin-top: 2%;
    margin-bottom: 3%;
    text-align: right;
}

.box-3 {
    /* Final adjustment for the Serif descenders */
    margin-top: 4%;
    text-align: center;
}

/* --- REFINED TYPEFACE STYLES --- */

.footer-sans {
    font-family: "futura-100-book", sans-serif;
    font-size: 13vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-rendering: geometricPrecision;
}

.footer-italic-serif {
    font-family: 'Quattrocento', serif;
    font-size: 14.3vw;
    font-style: italic;
    font-weight: 100;
    /* Extremely thin stroke to match your Footer.jpg reference */
    -webkit-text-stroke: 0.15px rgba(236, 238, 237, 0.4); 
    text-rendering: geometricPrecision;
    
    /* Optical correction: nudges the serif up slightly within its box */
    position: relative;
    top: -0.02em; 
    
    transform: skewX(-6deg);
    display: inline-block;
}

/* Typography styles (Keep these as they were) */

/* --- BESPOKE FORM STYLING --- */

.mailchimp-section {
    width: 40vw; /* Aligned with your other content blocks */
    margin: 0 auto;
}

/* Individual field container */
.mc-field-group {
    width: 100%;
    margin-bottom: 20px; /* Spacing between the lines */
}

.ars-input {
    width: 100%;
    background: transparent;
    border: none;
    /* Ultra-thin line to match Design */
    border-bottom: 0.5px solid rgba(49, 38, 29, 1); 
    padding: 30px 0 10px 0;
    font-family: "futura-100-book", sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--luxury-white);
    text-transform: uppercase;
    outline: none;
    border-radius: 0;
    transition: border-color 0.6s ease;
}

.ars-input:focus {
    border-bottom: 0.5px solid rgba(236, 238, 237, 0.8);
}

/* Placeholder appearance */
.ars-input::placeholder {
    color: rgba(236, 238, 237, 0.35);
    font-size: 13px;
}

/* GDPR Customization */
.gdpr-container {
    padding: 30px 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-container input { display: none; } /* Hide standard box */

.checkmark {
    width: 14px;
    height: 14px;
    border: 0.5px solid rgba(236, 238, 237, 0.4);
    margin-top: 30px;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--loretto-brown);
    border-color: var(--loretto-brown);
}

.gdpr-text {
    font-family: "futura-100-book", sans-serif;
    margin-top: 30px;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: rgba(236, 238, 237, 0.5);
}

/* --- CENTERED FUTURA SUBSCRIBE BUTTON WITH SHIMMER --- */
#mc-embedded-subscribe {
    /* Layout & Centering */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto;
    padding: 20px 60px;
    position: relative; /* Required for the shimmer positioning */
    overflow: hidden;    /* Clips the shimmer so it stays inside the button */
    
    /* Aesthetics (Broadcast Glass Style) */
    background-color:  #222;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--luxury-white);
    border-radius: 200px; 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    /* Typography */
font-family: "futura-100-book", sans-serif;
    font-size: 24px; /* Requested 30px */
    font-weight: 100;
    text-rendering: geometricPrecision;
    letter-spacing: 1px;
    
    /* Interaction */
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    outline: none;
}

/* THE SHIMMER STREAK */
#mc-embedded-subscribe::after {
    content: '';
    position: absolute;
    left: 0; 
    top: 100%; /* Start below the button */
    width: 100%; 
    height: 100%;
    /* Gradient representing the light reflection */
    background: linear-gradient(0deg, 
        transparent, 
        rgba(255, 255, 255, 0.15), 
        transparent
    );
    z-index: 1;
    pointer-events: none;
}

/* HOVER STATES */
#mc-embedded-subscribe:hover {
    border-color: rgba(255, 255, 255, 0.5);
    filter: brightness(1.1);
}

/* Trigger the animation on hover */
#mc-embedded-subscribe:hover::after {
    animation: shimmerSlideUp 0.7s ease forwards;
}

#mc-embedded-subscribe:active {
    transform: scale(0.96);
    background-color: rgba(255, 255, 255, 0.2);
    
}

/* ANIMATION KEYFRAMES */
@keyframes shimmerSlideUp { 
    0% { top: 100%; } 
    100% { top: -100%; } 
}

/* Container fix */
.clear {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Container fix to ensure absolute centering */
.clear {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensure the container doesn't force it full-width */
.clear {
    display: flex;
    justify-content: flex-start;
}

/* --- MOBILE REFINEMENTS (< 768px) --- */
@media (max-width: 768px) {
    
    /* 1. Expand Content Width */
    .content-block, .mailchimp-section, .footer-lockup {
        width: 88vw !important;
    }

    /* 2. Adjust Divider Width */
    .about-divider {
        width: 88vw !important;
    }

    /* 3. Scale Body Typography */
    .bespoke-text {
        font-size: 18px; /* Slightly smaller for mobile density */
        line-height: 1.5;
    }

    /* 4. Scale Massive Footer */
    .footer-sans {
        font-size: 18vw; /* Makes it fill the mobile width */
    }
    .footer-italic-serif {
        font-size: 19vw;
    }

    /* 5. Header Adjustments */
  .stage-header {
        width: 88vw !important; /* Matches your .content-block width */
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        display: flex !important; /* Ensures it stays visible even if hidden elsewhere */
        justify-content: space-between !important;
    }
    
    .header-logo img {
        height: 25px; /* Scale logo down for small screens */
       position: absolute;
        left: 50%;
        transform: translateX(-50%);

    }

    /* Hide the text label next to the play button */
    .header-version .button-text {
        display: none;
    }

    /* Optional: Center the play button better now that text is gone */
    .enter-broadcast-container {
        gap: 0;
    }

    /* Ensure the play circle stays visible but takes up less space */
    .play-circle {
        width: 35px;
        height: 35px;
    }

    .first-word {
    font-family: 'Quattrocento', serif;
    font-weight: 100;
    font-size: 34px;
    font-style: italic;
    transform: skewX(-8deg); 
    -webkit-text-stroke: 0.2px rgba(0,0,0,0.5);
    text-rendering: geometricPrecision;
    letter-spacing: 0px; 
    }

}