/* -------------------------------------------------------------
   VILLA FOKSAL GROUP - STYLESHEET
   Luxury Design System: Off-white, Deep Navy Blue, Loro Piana Bordeaux
   Inspired by Brunello Cucinelli, Aman, and Loro Piana
------------------------------------------------------------- */

/* Reset & Variables */
:root {
    --bg-cream: #FAF7F2;
    --bg-white: #FFFFFF;
    --color-navy: #0F1E3D; /* Rich deep navy that displays clearly on screen */
    --color-bordeaux: #7A1C2E; /* Loro Piana Burgundy */
    --color-muted: #5C6B73;
    --color-light-gray: #E5E9EC;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 110px; /* Offset for sticky main header */
}

body {
    background-color: var(--bg-cream);
    color: var(--color-navy);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography Utilities */
.serif {
    font-family: var(--font-serif);
    font-weight: 400;
}

.uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    font-weight: 500;
}

.text-center {
    text-align: center;
}

.accent-color {
    color: var(--color-bordeaux);
}

.bold {
    font-weight: 500;
}

.italic {
    font-style: italic;
}

.text-muted {
    color: var(--color-muted);
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section styling */
section {
    padding: 100px 0;
}

/* Top Bar */
.top-bar {
    background-color: var(--color-bordeaux);
    color: var(--bg-cream);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    padding: 4px 0;
    position: relative;
    z-index: 100;
}

.top-bar-content span {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hide top-bar text when side menu is open */
body.menu-open .top-bar-content span {
    opacity: 0;
    visibility: hidden;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(250, 247, 242, 0.6);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0 2px;
    transition: var(--transition-fast);
}

.lang-btn.active, .lang-btn:hover {
    color: var(--bg-cream);
}

.separator {
    color: rgba(250, 247, 242, 0.3);
}

/* Header */
.main-header {
    background-color: var(--color-navy); /* Deep Navy background */
    border-bottom: 1px solid rgba(250, 247, 242, 0.05); /* Soft beige border */
    position: sticky;
    top: 0;
    z-index: 90;
    padding: 8px 0; /* Minimal padding for maximum logo space */
    backdrop-filter: blur(8px);
    transition: padding 0.3s ease, background-color 0.3s ease, min-height 0.3s ease;
    min-height: 110px; /* Lock height to contain the large logo */
    display: flex;
    align-items: center;
}

body.scrolled .main-header {
    padding: 4px 0;
    min-height: 80px; /* Reduce header height on scroll */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    position: relative; /* Context for absolute centering */
}

/* Absolute centering of logo container */
.logo-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Elegant Text Menu button */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 0;
    z-index: 95;
}

.menu-text {
    color: var(--bg-cream); /* Off-white for dark header */
    transition: var(--transition-fast);
}

.menu-toggle:hover .menu-text {
    color: #A08B76; /* Accent color on hover */
}

/* Logo SVG - Maximized for maximum presence */
.logo-svg {
    width: 320px; /* Maximized width */
    height: 90px; /* Maximized height */
    display: block;
    transition: transform 0.3s ease;
}

body.scrolled .logo-svg {
    transform: scale(0.8); /* Scale down slightly on scroll */
}

.logo-text-primary {
    font-family: var(--font-serif);
    font-size: 31px; /* Increased inside the SVG viewBox */
    font-weight: 400; /* Bolder weight so it doesn't look thin/invisible */
    fill: var(--color-navy); /* Default (for light backgrounds like side menu) */
    letter-spacing: 0.16em;
}

.logo-text-secondary {
    font-family: var(--font-sans);
    font-size: 12px; /* Scaled up proportionally */
    font-weight: 400;
    fill: #A08B76; /* Warm taupe/gold */
    letter-spacing: 0.45em;
}

/* Header logo override for dark header background */
.main-header .logo-text-primary {
    fill: var(--bg-cream);
}

.main-header .logo-text-secondary {
    fill: #C2AE99; /* Slightly brighter gold for contrast */
}

.cta-link {
    color: var(--bg-cream); /* Cream for dark header */
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    border-bottom: 1px solid var(--bg-cream);
    padding-bottom: 2px;
    transition: var(--transition-fast);
}

/* Tasteful Header CTA Button */
.header-cta-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--bg-cream);
    color: var(--bg-cream);
    padding: 10px 22px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.header-cta-btn:hover {
    background-color: var(--bg-cream);
    color: var(--color-navy);
    border-color: var(--bg-cream);
}

body.scrolled .header-cta-btn {
    padding: 8px 18px;
}

.cta-link:hover {
    color: #A08B76;
    border-color: #A08B76;
}

/* Slide-out Drawer Menu */
.side-menu {
    background-color: var(--bg-cream);
    color: var(--color-navy);
    height: 100vh;
    width: 320px;
    position: fixed;
    top: 0;
    left: -320px;
    z-index: 200;
    transition: var(--transition-smooth);
    box-shadow: 10px 0 30px rgba(11, 22, 44, 0.15);
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(11, 22, 44, 0.05);
}

.side-menu.open {
    left: 0;
}

.side-menu-top-line {
    background-color: var(--color-bordeaux);
    height: 0px; /* Top bar moved to bottom of page */
    width: 100%;
}

body.scrolled .side-menu-top-line {
    height: 0;
}

.side-menu-header {
    background-color: var(--color-navy);
    height: 110px; /* Matches main header min-height */
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(250, 247, 242, 0.05);
    box-sizing: border-box;
    transition: height 0.3s ease;
}

body.scrolled .side-menu-header {
    height: 80px; /* Matches main header scrolled min-height */
}

.side-menu-logo-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.side-menu-logo-wrapper .logo-svg {
    width: 200px; /* Same size as top header */
    height: 80px;
}

/* Side menu logo overrides for dark header block */
.side-menu-header .logo-text-primary {
    fill: var(--bg-cream);
}

.side-menu-header .logo-text-secondary {
    fill: #C2AE99;
}

.close-menu {
    background: none;
    border: none;
    color: var(--bg-cream);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    margin-left: auto;
    transition: var(--transition-fast);
}

.close-menu:hover {
    color: #A08B76;
}

.side-menu-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    flex: 1;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nav-item {
    color: var(--color-navy);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition-fast);
    display: inline-block;
}

.nav-item:hover {
    color: var(--color-bordeaux);
    transform: translateX(5px);
}

.side-menu-footer {
    font-size: 0.75rem;
    color: var(--color-muted);
    letter-spacing: 0.05em;
}

/* SECTION 1: Great Narration */
.section-narrative {
    background-color: var(--bg-cream); /* Set to cream background */
    padding: 140px 0; /* Massive, spacious padding like Brunello Cucinelli */
}

.narrative-title {
    font-size: 5rem;
    line-height: 1.15;
    color: var(--color-navy);
    font-weight: 300;
    margin: 0;
}

.comparison-row .arrow {
    color: var(--color-bordeaux);
    font-size: 1.3rem;
}

.comparison-row .from {
    color: var(--color-muted);
    width: 250px;
    text-align: right;
}

.comparison-row .to {
    color: var(--color-navy);
    width: 320px;
    text-align: left;
}

.black-highlight-box {
    background-color: var(--color-navy);
    color: var(--bg-cream);
    padding: 20px 40px;
    display: inline-block;
    letter-spacing: 0.08em;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 30px;
}

/* SECTION 2: Hero Image (Foksal Street) */
.section-hero-image {
    padding: 0;
    background-color: var(--bg-cream);
}

.hero-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-image-img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    border: 1px solid rgba(10, 25, 47, 0.08);
    box-shadow: 0 15px 35px rgba(10, 25, 47, 0.05);
}

.hero-image-caption {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-top: 15px;
}

/* SECTION 3: Motyw Przewodni */
.section-motto {
    background-color: var(--bg-white); /* Full width white band */
    padding: 80px 0;
    border-top: 1px solid rgba(11, 22, 44, 0.03);
    border-bottom: 1px solid rgba(11, 22, 44, 0.03);
}

.motto-box {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.motto-box h3 {
    font-size: 2.6rem;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.motto-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-navy);
    max-width: 550px;
    margin: 0 auto 30px auto;
}

.motto-footer-note {
    font-size: 0.85rem;
    color: var(--color-muted);
    border-top: 1px solid rgba(10, 25, 47, 0.08);
    padding-top: 20px;
    display: inline-block;
}

/* SECTION 4: History */
.section-history {
    background-color: var(--bg-cream);
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-top: 10px;
}

.history-right p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.history-right p:last-child {
    margin-bottom: 0;
}

/* SECTION 5: Three Vertical Banners (Portfolio) */
.section-brands {
    padding: 0;
}

.brands-wrapper {
    display: flex;
    height: 700px;
    width: 100%;
}

.brand-column {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px 40px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* Pre-defined luxury backgrounds using high-end gradients */
.brand-column[data-bg="vf"] {
    background: linear-gradient(rgba(11, 22, 44, 0.4), rgba(11, 22, 44, 0.9)), url('assets/gora_strony_vfg.jpg') center/cover no-repeat;
}

.brand-column[data-bg="lu"] {
    background: linear-gradient(rgba(11, 22, 44, 0.4), rgba(11, 22, 44, 0.9)), url('assets/idea_zalozycielka.jpg') center/cover no-repeat;
}

.brand-column[data-bg="cvf"] {
    background: linear-gradient(rgba(11, 22, 44, 0.4), rgba(11, 22, 44, 0.9)), url('assets/jakosc_kreacji.jpg') center/cover no-repeat;
}

.brand-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 22, 44, 0.2);
    transition: var(--transition-smooth);
    z-index: 1;
}

.brand-column-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* VF Column Slideshow Background */
.brand-column-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.brand-column-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: vfSlideshow 10s infinite;
}

.brand-column-slideshow .slide:nth-child(2) {
    animation-delay: 5s;
}

.brand-column-slideshow.paused .slide {
    animation-play-state: paused;
}

@keyframes vfSlideshow {
    0%, 45% { opacity: 1; }
    50%, 95% { opacity: 0; }
    100% { opacity: 1; }
}

.brand-column-content {
    position: relative;
    z-index: 2;
    color: var(--bg-cream);
    width: 100%;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

.brand-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
    opacity: 0.5;
}

.brand-title {
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.brand-short-desc {
    font-size: 0.95rem;
    color: rgba(250, 247, 242, 0.8);
    margin-bottom: 30px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.brand-btn {
    background: none;
    border: 1px solid var(--bg-cream);
    color: var(--bg-cream);
    padding: 12px 25px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-fast);
    opacity: 0;
}

/* Hover behaviors */
.brand-column:hover {
    flex: 1.4;
}

.brand-column:hover .brand-bg-overlay {
    background-color: rgba(0, 0, 0, 0.55);
}

.brand-column:hover .brand-column-content {
    transform: translateY(0);
}

.brand-column:hover .brand-short-desc {
    opacity: 1;
    max-height: 100px;
}

.brand-column:hover .brand-btn {
    opacity: 1;
}

.brand-btn:hover {
    background-color: var(--bg-cream);
    color: var(--color-navy);
}

/* SECTION 6: About Me (Paweł Chmielewski) */
.section-about-me {
    background-color: var(--bg-cream);
    border-top: 1px solid rgba(11, 22, 44, 0.03);
}

.about-me-title {
    font-size: 3rem;
    margin-bottom: 50px;
    letter-spacing: 0.02em;
}

/* Main Portrait Placeholder (Ad. 2: Puste okno) */
.portrait-placeholder {
    width: 100%;
    max-width: 450px;
    height: 550px;
    margin: 0 auto 50px auto;
    border: 1px dashed rgba(11, 22, 44, 0.2);
    background-color: var(--bg-white); /* White background for card contrast on beige */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.placeholder-icon {
    font-size: 3.5rem;
    color: rgba(10, 25, 47, 0.15);
}

.placeholder-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 280px;
}

.biography-intro {
    font-size: 1.8rem;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 100px auto;
    color: var(--color-bordeaux);
}

/* Bio Steps flow */
.bio-step {
    text-align: left;
    margin-bottom: 120px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.bio-step:last-child {
    margin-bottom: 0;
}

.bio-year {
    font-size: 1.5rem;
    color: var(--color-bordeaux);
    margin-bottom: 10px;
    display: inline-block;
    border-bottom: 1px solid rgba(122, 28, 46, 0.2);
    padding-bottom: 5px;
}

.bio-step-heading {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--color-navy);
}

.bio-step p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-navy);
    margin-bottom: 40px;
}

/* Wycinki prasowe pionowe - Cucinelli Style */
.bio-gallery {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.bio-gallery.single {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.bio-gallery-item {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px; /* Space for overlay card */
}

.bio-gallery-image-wrapper {
    width: 100%;
    height: 540px; /* Vertical height */
    overflow: hidden;
    border: 1px solid rgba(11, 22, 44, 0.05);
}

.bio-press-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.95) contrast(1.05);
    transition: var(--transition-smooth);
}

.bio-gallery-item:hover .bio-press-img {
    filter: grayscale(0%) brightness(1) contrast(1);
    transform: scale(1.03);
}

.bio-press-card {
    position: absolute;
    bottom: -30px;
    left: 15px;
    right: 15px;
    background-color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 15px 35px rgba(11, 22, 44, 0.08);
    text-align: center;
    border: 1px solid rgba(11, 22, 44, 0.03);
    z-index: 10;
    transition: var(--transition-fast);
}

.bio-gallery-item:hover .bio-press-card {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 22, 44, 0.12);
}

.bio-press-card-title {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-bordeaux);
    margin-bottom: 6px;
    font-weight: 500;
}

.bio-press-card-date {
    font-size: 0.7rem;
    color: var(--color-muted);
    margin-bottom: 10px;
}

.bio-press-card-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--color-navy);
    line-height: 1.5;
}

/* Helper class for menu multi-line breaks */
.side-menu .nav-item br {
    display: block;
    margin-bottom: 4px;
}

.side-menu .nav-item {
    line-height: 1.4;
}

/* SECTION 7: Scholarship (Fundusz dla Młodych) */
.section-scholarship-intro {
    background-color: var(--bg-cream);
    border-top: 1px solid rgba(11, 22, 44, 0.03);
    padding: 100px 0 50px 0;
}

.section-scholarship-intro .section-subtitle {
    color: var(--color-navy);
}

.section-scholarship-intro .scholarship-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--color-navy);
}

.section-scholarship-intro .scholarship-intro {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-muted);
}

.section-scholarship {
    background: url('assets/fundusz_bg.jpg') center/cover no-repeat;
    padding: 100px 0;
}

.section-scholarship .section-subtitle {
    color: #FAF7F2;
    text-shadow: 0 2px 8px rgba(11, 22, 44, 0.8);
}

.section-scholarship .scholarship-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(11, 22, 44, 0.85);
}

.section-scholarship .scholarship-intro {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 60px auto;
    color: #FAF7F2;
    text-shadow: 0 2px 8px rgba(11, 22, 44, 0.8);
}

.scholarship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.scholarship-card {
    background-color: var(--bg-white);
    padding: 50px 30px;
    border: 1px solid rgba(10, 25, 47, 0.03);
    text-align: left;
    transition: var(--transition-fast);
}

.scholarship-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(10,25,47,0.03);
}

.card-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-bordeaux);
    margin-bottom: 20px;
    opacity: 0.6;
}

.scholarship-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--color-navy);
}

.scholarship-card p {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.7;
}

/* BRAND OVERLAYS (Full-screen Details SPA style) */
.brand-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-cream);
    z-index: 500;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                visibility 0.6s;
    padding: 80px 0;
}

.brand-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.close-overlay {
    background: none;
    border: none;
    color: var(--color-navy);
    font-size: 2.5rem;
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 300;
}

.close-overlay span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.overlay-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.overlay-header {
    margin-bottom: 50px;
    text-align: center;
}

.overlay-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-bordeaux);
    opacity: 0.7;
    display: block;
    margin-bottom: 5px;
}

.overlay-title {
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.loro-line {
    width: 80px;
    height: 2px;
    background-color: var(--color-bordeaux);
    margin: 0 auto;
}

.overlay-body {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Video Player Box */
.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.overlay-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* VF Image Banner Grid */
.vf-banner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.vf-banner-item {
    position: relative;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
    border: 1px solid rgba(11, 22, 44, 0.05);
}

.vf-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.vf-banner-item:hover .vf-banner-img {
    transform: scale(1.03);
}

.vf-banner-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(11, 22, 44, 0.85));
    color: var(--bg-cream);
    padding: 30px 20px 20px 20px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.vf-banner-item:hover .vf-banner-caption {
    opacity: 1;
    transform: translateY(0);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A192F 0%, #1A365D 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--bg-cream);
    cursor: pointer;
    transition: var(--transition-fast);
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #0D223F 0%, #204272 100%);
}

.play-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition-fast);
}

.video-placeholder:hover .play-icon {
    transform: scale(1.1);
    background-color: var(--bg-cream);
    color: var(--color-navy);
}

.video-placeholder-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.8;
}

.overlay-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.overlay-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-navy);
}

.overlay-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-navy);
}

.overlay-info {
    border-left: 1px solid rgba(10, 25, 47, 0.08);
    padding-left: 40px;
}

.overlay-info h4 {
    margin-bottom: 25px;
    color: var(--color-bordeaux);
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 0.95rem;
}

.info-list li strong {
    color: var(--color-navy);
}

.info-list a {
    color: var(--color-bordeaux);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition-fast);
}

.info-list a:hover {
    border-color: var(--color-bordeaux);
}

/* Announcement Pop-up */
.info-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    background-color: var(--color-navy);
    color: var(--bg-cream);
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    z-index: 100;
    transform: translateY(100px) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.info-popup.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.close-popup {
    background: none;
    border: none;
    color: var(--bg-cream);
    font-size: 1.5rem;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.close-popup:hover {
    opacity: 1;
}

.popup-tag {
    color: var(--color-bordeaux);
    margin-bottom: 10px;
    display: block;
}

.info-popup h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.info-popup p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}

.popup-cta-btn {
    background-color: var(--color-bordeaux);
    border: none;
    color: var(--bg-cream);
    width: 100%;
    padding: 12px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.popup-cta-btn:hover {
    background-color: #922238;
}

/* FOOTER */
.main-footer {
    background-color: var(--color-navy);
    color: var(--bg-cream);
    padding: 0 0 40px 0;
    border-top: none;
}

.main-footer .container {
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.brand-col p {
    font-size: 0.95rem;
    opacity: 0.6;
    max-width: 320px;
    margin-top: 15px;
}

/* White/cream version of SVG logo for dark backgrounds */
.main-footer .logo-text-primary {
    fill: var(--bg-cream);
}

.main-footer .logo-text-secondary {
    fill: #A79380;
}

.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 25px;
    color: rgba(250,247,242,0.4);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col a {
    color: var(--bg-cream);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-bordeaux);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-links a {
    color: var(--bg-cream);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-bordeaux);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 247, 242, 0.05);
    padding-top: 30px;
    font-size: 0.75rem;
    color: rgba(250, 247, 242, 0.3);
    display: flex;
    justify-content: space-between;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .brands-wrapper {
        flex-direction: column;
        height: auto;
    }
    
    .brand-column {
        height: 400px;
        flex: none;
    }
    
    .brand-column:hover {
        flex: none;
    }
    
    .brand-column-content {
        transform: translateY(0);
    }
    
    .brand-short-desc, .brand-btn {
        opacity: 1;
        max-height: 100px;
    }
    
    .history-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .scholarship-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .narrative-title {
        font-size: 2.5rem;
    }
    
    .comparison-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .comparison-row .from, .comparison-row .to {
        width: 100%;
        text-align: center;
    }
    
    .comparison-row .arrow {
        transform: rotate(90deg);
        display: inline-block;
        margin: 5px 0;
    }
    
    .overlay-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vf-banner-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vf-banner-item {
        height: 320px;
    }
    
    .overlay-info {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(10, 25, 47, 0.08);
        padding-top: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bio-gallery {
        flex-direction: column;
    }
    
    .close-overlay {
        right: 20px;
        top: 20px;
    }
    
    .info-popup {
        width: calc(100% - 40px);
        bottom: 20px;
        right: 20px;
    }
}

/* Brunello Cucinelli Grid Layout at top of Home */
.section-hero-grid {
    padding: 0;
    margin-top: 0;
    background-color: var(--color-navy);
}

.cucinelli-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; /* No gaps, images touch each other */
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.cucinelli-card {
    position: relative;
    overflow: hidden;
    height: 550px;
    background-color: var(--color-navy);
}

.cucinelli-media-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.cucinelli-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.cucinelli-card-contain {
    background-color: #FFFFFF !important;
}

.cucinelli-img-contain {
    object-fit: contain !important;
    background-color: #FFFFFF !important;
}

.cucinelli-overlay-bg {
    display: none;
}

/* Overlaid Text Styling */
.cucinelli-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 50px;
    text-align: center;
    color: var(--color-navy);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

/* Text styles for specific cards without apla */
.card-street .cucinelli-overlay-text {
    color: #FFFFFF;
}
.card-street .cucinelli-card-title {
    color: #FFFFFF;
}
.card-street .cucinelli-card-quote {
    color: rgba(255, 255, 255, 0.85);
}
.card-street .cucinelli-card-link {
    color: #FFFFFF;
    border-color: #FFFFFF;
}
.card-street .cucinelli-card-link:hover {
    color: var(--color-bordeaux);
    border-color: var(--color-bordeaux);
}

/* Sketch card style: navy text because background is a light sketch */
.card-sketch .cucinelli-overlay-text {
    color: var(--color-navy);
}
.card-sketch .cucinelli-card-title {
    color: var(--color-navy);
}
.card-sketch .cucinelli-card-quote {
    color: var(--color-muted);
}
.card-sketch .cucinelli-card-link {
    color: var(--color-navy);
    border-color: var(--color-navy);
}
.card-sketch .cucinelli-card-link:hover {
    color: var(--color-bordeaux);
    border-color: var(--color-bordeaux);
}

/* Garden card style: all white text without apla */
.card-garden .cucinelli-overlay-text {
    padding: 60px 50px;
    justify-content: flex-end;
    height: 100%;
    background: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
}
.card-garden .cucinelli-card-category {
    color: #FFFFFF; /* White category */
}
.card-garden .cucinelli-card-title {
    color: #FFFFFF;
}
.card-garden .cucinelli-card-quote {
    color: rgba(255, 255, 255, 0.9);
}
.card-garden .cucinelli-card-link {
    color: #FFFFFF;
    border-color: #FFFFFF;
}
.card-garden .cucinelli-card-link:hover {
    color: #E5E9EC;
    border-color: #E5E9EC;
}

/* Press split layout (Zachęta) */
.card-press-split {
    background-color: var(--bg-cream) !important;
}
.press-split-container {
    display: flex;
    width: 100%;
    height: 100%;
}
.press-image-side {
    width: 50%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}
.press-split-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.press-text-side {
    width: 50%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--bg-cream);
}
.press-text-side .cucinelli-card-category {
    color: var(--color-bordeaux);
}
.press-text-side .cucinelli-card-title {
    color: var(--color-navy);
    font-size: 1.8rem;
    line-height: 1.3;
}
.press-text-side .cucinelli-card-quote {
    color: var(--color-muted);
    margin-bottom: 25px;
}
.press-text-side .cucinelli-card-link {
    color: var(--color-navy);
    border-color: var(--color-navy);
}
.press-text-side .cucinelli-card-link:hover {
    color: var(--color-bordeaux);
    border-color: var(--color-bordeaux);
}

.cucinelli-card-category {
    color: var(--color-bordeaux); /* Bordeaux accent */
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.cucinelli-card-title {
    font-size: 2.2rem;
    color: var(--color-navy);
    margin-bottom: 15px;
    line-height: 1.3;
}

.cucinelli-card-quote {
    font-size: 0.95rem;
    color: var(--color-muted);
    max-width: 460px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

.cucinelli-card-link {
    text-decoration: none;
    color: var(--color-navy);
    font-weight: 500;
    border-bottom: 1px solid var(--color-navy);
    padding-bottom: 3px;
    transition: var(--transition-fast);
}

.cucinelli-card-link:hover {
    color: var(--color-bordeaux);
    border-color: var(--color-bordeaux);
}

.section-hero-video-fullwidth {
    padding: 0;
    background-color: var(--color-navy);
    margin-top: -3px; /* Pull up to cover sub-pixel gaps */
    position: relative;
    z-index: 5;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.hero-fullwidth-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-cream);
    text-align: center;
    padding: 40px;
    z-index: 2;
}

.hero-video-overlay-text .video-tag {
    color: var(--bg-cream);
    opacity: 0.8;
    margin-bottom: 15px;
}

.hero-video-overlay-text .video-title {
    font-size: 3.5rem;
    max-width: 850px;
    line-height: 1.25;
    color: #FFFFFF;
    text-shadow: 0 2px 15px rgba(11, 22, 44, 0.5);
}

/* Responsive adjustments for Cucinelli Grid */
@media (max-width: 900px) {
    .cucinelli-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .cucinelli-card-media {
        height: 400px;
    }
    
    .press-split-container {
        flex-direction: column;
    }
    
    .press-image-side, .press-text-side {
        width: 100%;
        height: 50%;
    }
    
    .press-image-side {
        padding: 10px;
    }
    
    .press-text-side {
        padding: 30px 20px;
    }
    
    .hero-video-wrapper {
        height: 450px;
    }
    
    .hero-video-overlay-text .video-title {
        font-size: 2.2rem;
    }
}

/* SECTION 8: Zespół (Team Comparison) */
.section-team {
    background-color: var(--bg-cream);
    border-top: 1px solid rgba(11, 22, 44, 0.03);
    padding: 100px 0;
}
.team-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--color-navy);
}
.team-intro {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 60px auto;
    color: var(--color-muted);
}
.team-images-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin-top: 50px;
}
.team-row-wrapper {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}
.team-row-1 {
    height: 520px; /* Lock height so photo and drawing are exactly equal */
}
.team-row-1 .team-comp-wrapper {
    height: 100%;
}
.team-row-1 .team-comp-img {
    height: 100%;
    object-fit: cover;
}
.team-row-1 .team-drawing-img {
    object-position: center bottom; /* Cuts/crops the top of the sketch to align it */
}
.team-comp-wrapper {
    position: relative;
    overflow: hidden;
    height: auto;
    width: 100%;
}
.team-video-row {
    grid-column: span 2;
    height: 600px;
}
.team-sales-drawing, .team-lukasz-video {
    height: auto;
    aspect-ratio: 1 / 1;
}
.team-sales-drawing .team-comp-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}
.team-lukasz-video .team-comp-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* Subtle dark overlay for text readability */
.team-comp-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 30, 61, 0.1) 0%, rgba(15, 30, 61, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}
.team-comp-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}
.team-comp-wrapper:hover .team-comp-img {
    transform: scale(1.015);
}

.team-comp-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlaid typography inside the wrappers */
.team-overlay-text {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 60px 40px !important;
    text-align: center !important;
    color: #FFFFFF !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-end !important;
    box-sizing: border-box !important;
}
.team-overlay-text .team-category {
    font-size: 0.8rem !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: #FFFFFF !important; /* Force everywhere on white */
    margin-bottom: 12px !important;
    font-weight: 500 !important;
}
.team-overlay-text .team-title {
    font-family: var(--font-serif) !important;
    font-size: 2.4rem !important;
    line-height: 1.3 !important;
    color: #FFFFFF !important; /* Force everywhere on white */
    margin: 0 !important;
    text-shadow: 0 2px 12px rgba(11, 22, 44, 0.5) !important;
    font-weight: 400 !important;
}

@media (max-width: 768px) {
    .team-images-comparison {
        grid-template-columns: 1fr;
    }
    .team-row-wrapper {
        grid-template-columns: 1fr;
        height: auto;
    }
    .team-comp-wrapper {
        height: auto;
    }
    .team-comp-img {
        height: auto;
    }
    .team-comp-video {
        height: 400px;
    }
    .team-video-row {
        height: 400px;
    }
    .team-sales-drawing, .team-lukasz-video {
        height: 500px;
        aspect-ratio: auto;
    }
    .team-overlay-text {
        position: relative !important;
        background: var(--color-navy) !important;
        padding: 40px 20px !important;
    }
    .team-overlay-text .team-title {
        font-size: 1.8rem !important;
    }
}

/* Delicate Bordeaux Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--color-bordeaux);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.scroll-to-top.show {
    opacity: 0.8;
    visibility: visible;
}

.scroll-to-top:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* --- MOBILE HEADER & HAMBURGER STYLES --- */
.hamburger-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--bg-cream);
    transition: var(--transition-fast);
}

/* Mobile motto line break default */
.mobile-break {
    display: none;
}

/* --- CUSTOM FULLSCREEN VIDEO STYLES --- */
.video-container.fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    z-index: 9999 !important;
    aspect-ratio: auto !important;
    background-color: #000000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.video-container.fullscreen .overlay-video {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

.video-close-btn {
    display: none;
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--bg-cream);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10005;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    padding: 0;
}

.video-close-btn:hover {
    color: #FFFFFF;
    transform: scale(1.1);
}

.video-close-btn svg {
    display: block;
    width: 24px;
    height: 24px;
}

.video-container.fullscreen .video-close-btn {
    display: flex;
}

/* Hide scroll to top button when fullscreen video is active */
body.fullscreen-video-active #scroll-to-top-btn {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Mobile Overrides for Header, Logo, Motto, Videos */
@media (max-width: 768px) {
    .main-header {
        min-height: 70px !important;
        padding: 4px 0 !important;
    }
    body.scrolled .main-header {
        min-height: 60px !important;
        padding: 2px 0 !important;
    }
    .header-container {
        padding: 0 20px !important;
    }
    .logo-svg {
        width: 170px !important;
        height: 48px !important;
    }
    body.scrolled .logo-svg {
        transform: none !important;
    }
    .menu-toggle .menu-text {
        display: none !important;
    }
    .menu-toggle .hamburger-icon {
        display: flex !important;
    }
    .mobile-break {
        display: block !important;
    }
    .motto-box h3 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    .video-close-btn {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
    }
    .video-close-btn svg {
        width: 20px;
        height: 20px;
    }
    
    /* Slide-down menu on mobile like Brunello Cucinelli */
    .side-menu {
        left: 0 !important;
        top: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        transform: translateY(-100%) !important;
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
        box-shadow: none !important;
        border-right: none !important;
        overflow-y: auto !important;
    }
    
    .side-menu.open {
        transform: translateY(0) !important;
    }
    
    .side-menu-header {
        height: 70px !important;
        padding: 0 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        background-color: var(--color-navy) !important;
        border-bottom: 1px solid rgba(250, 247, 242, 0.05) !important;
    }
    
    body.scrolled .side-menu-header {
        height: 60px !important;
    }
    
    .side-menu-logo-wrapper {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .side-menu-logo-wrapper .logo-svg {
        width: 170px !important;
        height: 48px !important;
    }
    
    .close-menu {
        margin-left: 0 !important;
        position: absolute !important;
        left: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: var(--bg-cream) !important;
        font-size: 2.2rem !important;
        padding: 0 !important;
    }

    body.menu-open {
        overflow: hidden !important;
    }
}
