/* ABOUT US PAGE STYLES */

/* --- BRAND INTRO WIDGET (Text Read) --- */
.md-read-container {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    padding: 10vh 20px;
    text-align: center;
    cursor: default;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Prevent scroll if it goes slightly over */
}

.md-read-text {
    font-family: "Alumni Sans", sans-serif;
    /* User asked for ~36px base, but "massive" feel. 2.5rem is ~40px. */
    font-size: clamp(2rem, 5vw, 90px);
    /* REDUCED from 2.5rem/6vw/100px */
    line-height: 1.0;
    text-transform: uppercase;
    color: #111;
    white-space: normal;
    /* Allow nice wrapping if needed, but we prevent jitter */
}

.md-char {
    display: inline-block;
    white-space: pre;
    transition: font-weight 0.1s linear;
    will-change: font-weight;
    font-weight: 100;
    text-align: center;
    /* Width will be locked by JS */
}

.md-word {
    display: inline-block;
    white-space: nowrap;
    margin-right: 0.25em;
}

/* --- BANNER SLIDER SECTION STYLES --- */
.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001 !important;
    pointer-events: auto !important;
    background: transparent;
    /* Keep it clean */
}

/* Force White Header Content for Light Background (Restored) */
.about-page .site-header {
    background: #ffffff !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow for visibility */
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.about-page .site-header.scrolled {
    background: #ffffff !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    /* Slightly deeper shadow on scroll */
}

.about-page .site-header.scrolled {
    background: #ffffff !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.about-page .site-header,
.about-page .site-header a,
.about-page .site-header .nav-link,
.about-page .site-header .icon-link,
.about-page .site-header .follow-us-text,
.about-page .site-header .nav-trigger,
.about-page .site-header li a {
    color: #000 !important;
}

/* Fix SVGs not inheriting (Force Black) */
.about-page .site-header svg,
.about-page .site-header svg path {
    fill: #000 !important;
    stroke: #000 !important;
}

/* Invert White Logo to Black - CRITICAL FIX */
.about-page .site-header .logo-link img {
    filter: invert(1) brightness(0) !important;
    opacity: 1 !important;
}

.about-page .burger-icon,
.about-page .burger-icon::before,
.about-page .burger-icon::after {
    background-color: #000 !important;
}

.slideshow {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slideshow.loaded {
    opacity: 1;
}

.slide {
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    will-change: transform;
}

/* Slide Colors */
.slide.slide-1 {
    background-color: #f9f7f2;
}

.slide.slide-2 {
    background-color: #ffffff;
}

.slide.slide-3 {
    background-color: #f2f2f2;
}

.slide.slide-4 {
    background-color: #faebeb;
}

.slide_container {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide_container.is--reverse {
    flex-direction: row-reverse;
}

/* Image Half */
.slide_image-wrapper {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.slide_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Content Half */
.slide_content-wrapper {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 4rem;
    text-align: center;
}

.slide_content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.slide_content-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5vw;
    line-height: 1.1;
    font-weight: 400;
    margin: 0;
    color: #1a1a1a;
}

.slide_content-heading .italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    color: #bfa480;
    /* Gold Accent */
}

.slide_content-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    max-width: 500px;
}

/* Nav Indicator */
.nav-ind {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #1a1a1a;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
    .slide_content-heading {
        font-size: 5vw;
    }

    .slide_container,
    .slide_container.is--reverse {
        flex-direction: column;
    }

    .slide_image-wrapper {
        flex: 1.5;
        height: auto;
    }

    .slide_content-wrapper {
        flex: 1;
        height: auto;
        padding: 2rem;
    }

    .slide_content-heading {
        font-size: 3rem;
    }

    .slide_content-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .slide_content-heading {
        font-size: 2.5rem;
    }
}