/* ═══════════════════════════════════════════════════════════════════════════
   LaDolce — Café & Bakery Website CSS
   Warm · Cozy · Modern Minimal
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────────────────── */
:root {
    /* Brand — keep navy for logo/brand anchor */
    --brand:          #0f1b4c;
    --brand-dark:     #0a1235;
    --brand-light:    #1a2980;

    /* Café palette */
    --primary:        #3d2c1e;     /* Rich espresso brown      */
    --primary-light:  #5a4234;     /* Medium brown              */
    --accent:         #b07c4f;     /* Coffee copper             */
    --accent-hover:   #96673e;     /* Darker copper             */
    --accent-glow:    rgba(176, 124, 79, 0.25);

    /* Warm surfaces */
    --bg:             #faf6f1;     /* Cream                     */
    --bg-alt:         #f3ebe0;     /* Light latte               */
    --white:          #fffbf5;     /* Warm white                */
    --white-pure:     #ffffff;

    /* Text */
    --text:           #2c1810;     /* Dark roast                */
    --text-muted:     #6b5347;     /* Medium brown              */
    --text-light:     #a08977;     /* Light brown               */

    /* Borders */
    --border:         #e8ddd2;
    --border-light:   #f0e8de;

    /* Elevation (warm-tinted shadows) */
    --shadow-xs:      0 1px 2px  rgba(60, 44, 30, 0.06);
    --shadow-sm:      0 1px 3px  rgba(60, 44, 30, 0.08);
    --shadow-md:      0 4px 16px rgba(60, 44, 30, 0.10);
    --shadow-lg:      0 8px 32px rgba(60, 44, 30, 0.12);
    --shadow-xl:      0 16px 48px rgba(60, 44, 30, 0.16);

    /* Radii */
    --radius-sm:      8px;
    --radius-md:      12px;
    --radius-lg:      16px;
    --radius-xl:      24px;
    --radius-full:    9999px;

    /* Motion */
    --ease:           cubic-bezier(0.4, 0, 0.2, 1);
    --transition:     all 0.3s var(--ease);

    /* Fonts */
    --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif:     'Playfair Display', Georgia, serif;
    --container:      1200px;
}


/* ── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--transition); }
ul  { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

.pre-line { white-space: pre-line; }
.text-muted { color: var(--text-muted); font-size: 0.88rem; }


/* ══════════════════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(15, 27, 76, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-logo-img {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.nav-logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white-pure);
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 8px 18px;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

/* Hamburger */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ══════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 35%, var(--primary) 70%, #2a1f15 100%);
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.hero-shape-1 {
    width: 600px; height: 600px;
    background: var(--accent);
    top: -200px; right: -150px;
    animation: heroFloat 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 350px; height: 350px;
    background: #fff;
    bottom: -100px; left: -80px;
    animation: heroFloat 25s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 200px; height: 200px;
    background: var(--accent);
    top: 40%; left: 15%;
    animation: heroFloat 18s ease-in-out infinite 3s;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0)    rotate(0deg);   }
    25%      { transform: translate(30px, -20px) rotate(3deg); }
    50%      { transform: translate(-20px, 30px) rotate(-2deg);}
    75%      { transform: translate(15px, 15px)  rotate(1deg); }
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(176, 124, 79, 0.2);
    border: 1px solid rgba(176, 124, 79, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #e8d5c0;
    animation: fadeInDown 0.8s var(--ease) both;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.15;
    animation: fadeInUp 0.8s var(--ease) 0.15s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s var(--ease) 0.3s both;
}


/* ══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s var(--ease) 0.45s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s var(--ease);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-primary:hover::before { left: 100%; }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background: var(--bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


/* ══════════════════════════════════════════════════════════════════════════
   SECTION COMMON
   ══════════════════════════════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(176, 124, 79, 0.1);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}


/* ══════════════════════════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════════════════════════ */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    background: var(--white);
}

.feature-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: rgba(176, 124, 79, 0.1);
    border-radius: var(--radius-md);
    color: var(--accent);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: #fff;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}


/* ══════════════════════════════════════════════════════════════════════════
   PRODUCTS (Home featured + Products page)
   ══════════════════════════════════════════════════════════════════════════ */
.products-section {
    padding: 100px 0;
    background: var(--bg);
}

.products-page-body {
    padding: 60px 0 100px;
    background: var(--bg);
}

.products-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all 0.4s var(--ease);
    border: 1px solid var(--border-light);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border);
}

.product-image-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-alt);
}

.product-image-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.08);
}

.product-info {
    padding: 18px 20px 22px;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.2px;
}


/* ══════════════════════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════════════════════ */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand), var(--primary));
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: #fff;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 32px;
}


/* ══════════════════════════════════════════════════════════════════════════
   PAGE HEADER (Products & Contact)
   ══════════════════════════════════════════════════════════════════════════ */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand), var(--primary));
    text-align: center;
    overflow: hidden;
}

.page-header .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-header-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}

.page-header-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    position: relative;
}


/* ══════════════════════════════════════════════════════════════════════════
   CONTACT / BRANCHES
   ══════════════════════════════════════════════════════════════════════════ */
.contact-section {
    padding: 60px 0 100px;
    background: var(--bg);
}

/* Locations Hub Grid Split */
.locations-hub {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

.branches-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Branch selector cards (left column) */
.branch-selector-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.branch-selector-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.branch-selector-card.active {
    border-color: var(--accent);
    background: var(--bg-alt);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.branch-selector-card.active::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--accent);
}

.branch-selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.branch-selector-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.branch-selector-card .active-badge {
    display: none;
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.branch-selector-card.active .active-badge {
    display: inline-block;
}

.branch-mini-info {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 0.88rem;
    line-height: 1.5;
}

.branch-mini-info:last-child {
    margin-bottom: 0;
}

.branch-mini-info svg {
    flex: 0 0 16px;
    color: var(--accent);
    margin-top: 3px;
}

/* Map view container (right column) */
.map-view-container {
    position: sticky;
    top: 100px;
}

.map-view-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-view-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--primary);
}

.map-view-header svg {
    color: var(--accent);
}

.map-view-status {
    color: var(--text-light);
}

.map-view-status strong {
    color: var(--primary);
    font-weight: 600;
}

.map-view-iframe-wrap {
    position: relative;
    background: var(--bg);
}

.map-view-iframe-wrap iframe {
    display: block;
    width: 100%;
    height: 480px;
}

.no-map-placeholder {
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    gap: 16px;
    padding: 40px;
    text-align: center;
}

.no-map-placeholder svg {
    color: var(--accent);
    opacity: 0.6;
}

.no-map-placeholder p {
    font-size: 0.95rem;
    margin: 0;
}


/* ══════════════════════════════════════════════════════════════════════════
   EMPTY STATE
   ══════════════════════════════════════════════════════════════════════════ */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.empty-state svg {
    margin: 0 auto 20px;
    opacity: 0.4;
}

.empty-state h3 {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.empty-state p { font-size: 1rem; }


/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.footer {
    background: var(--brand-dark);
    padding: 70px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact-list li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}


/* ══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease),
                transform 0.7s var(--ease);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered grid children */
.reveal:nth-child(2)  { transition-delay: 0.08s; }
.reveal:nth-child(3)  { transition-delay: 0.16s; }
.reveal:nth-child(4)  { transition-delay: 0.24s; }
.reveal:nth-child(5)  { transition-delay: 0.32s; }
.reveal:nth-child(6)  { transition-delay: 0.40s; }
.reveal:nth-child(7)  { transition-delay: 0.48s; }
.reveal:nth-child(8)  { transition-delay: 0.56s; }


/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .products-grid      { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .features-grid      { gap: 24px; }
    .footer-grid        { grid-template-columns: 1fr 1fr; gap: 32px; }
    .locations-hub      { grid-template-columns: 1fr; gap: 32px; }
    .map-view-container { position: relative; top: 0; }
    .map-view-iframe-wrap iframe,
    .no-map-placeholder { height: 400px; }
}

/* Mobile landscape */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--brand-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right 0.35s var(--ease);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active { right: 0; }

    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .mobile-menu-btn { display: flex; }

    .products-grid       { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .features-grid       { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .features-section,
    .products-section { padding: 70px 0; }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo { justify-content: center; }

    .page-header     { padding: 130px 0 60px; }
    .cta-banner      { padding: 60px 0; }
}

/* Small mobile */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero      { min-height: 90vh; }

    .hero-badge    { font-size: 0.78rem; padding: 6px 14px; }
    .hero-subtitle { font-size: 0.9rem; }

    .btn           { padding: 12px 24px; font-size: 0.88rem; }
    .product-info  { padding: 14px 14px 18px; }
    .product-name  { font-size: 0.85rem; }
    .product-price { font-size: 0.95rem; }

    .section-header { margin-bottom: 40px; }
    .map-view-iframe-wrap iframe,
    .no-map-placeholder { height: 320px; }
}

/* Nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}
