:root {
    --primary-color: #f8ae3a;
    --secondary-color: #f8ae3a;
    --background-color: #feebcc;
    --text-color: black;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}


/* Header */

.top-bar {
    display: grid;
    grid-template: 1fr/repeat(2, 1fr);
    background-color: var(--primary-color);
}

.header {
    position: relative;
    z-index: 100;
}

.top-bar {
    position: relative;
    z-index: 200;
}

.left {
    display: flex;
    gap: 10px;
    margin-left: 50px;
}

.left h4 {
    margin-top: 20px;
    color: white;
}

.left img {
    width: 25px;
    height: 25px;
    margin: 15px;
}

.right {
    display: flex;
    gap: 10px;
    margin-left: 100px;
}

.right h4 {
    margin-top: 20px;
    color: white;
}

.right img {
    width: 25px;
    height: 25px;
    margin: 15px;
}

.divider {
    color: black;
}

.bottom-bar {
    display: grid;
    width: 100%;
    height: 100px;
    grid-template-columns: auto 1fr auto;
    justify-content: center;
    align-content: center;
    background-color: black;
    position: relative;
}

.logo {
    margin-left: 100px;
    justify-content: center;
    align-content: center;
    height: 80%;
    width: 150%;
}

li {
    padding-top: 20px;
    font-size: 18px;
    list-style: none;
}

.menus {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-content: center;
}

.menus a {
    color: white !important;
    text-decoration: none;
    padding: 20px;
    font-weight: bold;
}

.menus a:hover {
    text-decoration: none;
    background-image: linear-gradient(to right, #f8ae3a, #ffffff) !important;
    border-radius: 20px;
    color: black !important;
    padding: 20px;
}

.menus .active {
    background-image: linear-gradient(to right, #f8ae3a, #ffffff) !important;
    border-radius: 20px;
}

.menus a.active {
    color: black !important;
}

.contact-button {
    background-color: var(--primary-color);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 20px;
}

.contact-button a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.contact-button a:hover {
    text-decoration: none;
    color: white;
}

.contact {
    margin-right: 100px;
    align-content: center;
}


/* 1. The Container (li) */


/* Essential: This keeps the dropdown anchored to this specific menu item */

li {
    position: relative;
    list-style: none;
    display: inline-block;
    /* Or flex, depending on your nav bar */
}


/* 2. The Main "Business" Link */

.business {
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.business a {
    color: white;
}


/* 3. The Dropdown Menu (Hidden by default) */

.submenu {
    display: none;
    /* Hidden by default */
    position: absolute;
    /* FULL WIDTH MAGIC */
    left: 0;
    width: 100%;
    /* Spans 100% of the .bottom-bar width */
    top: 80px;
    /* Push it down to clear the header height */
    background-color: black;
    /* Deep black/grey background */
    padding: 30px 10%;
    /* 10% side padding to align text with your logo */
    box-sizing: border-box;
    /* Ensures padding doesn't break the width */
    z-index: 999;
    /* Optional: The Gold top border seen in some designs */
    /* Layout: 2 Columns like the screenshot */
    grid-template-columns: 250px 250px;
    gap: 15px;
    align-content: center;
    justify-content: center;
    border-top: 2px solid #fdb913;
}


/* 4. The Hover Effect ( The Trigger ) */


/* When you hover the 'li', display the '.submenu' as a grid */

li:hover .submenu {
    display: grid;
}


/* Keep the main "Business" link yellow while the menu is open */

li:hover .business {
    color: var(--primary-color);
}


/* 5. Styling the Links INSIDE the dropdown */

.submenu a {
    color: white !important;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
    transition: color 0.2s;
    font-weight: bold;
}


/* Hover color for the dropdown items */

.submenu a:hover {
    background-image: linear-gradient(to right, #f8ae3a, #ffffff);
    width: fit-content;
    padding: 15px;
    color: black !important;
    border-radius: 20px;
    /* Gold/Yellow accent */
}

.menus li {
    position: static;
}


/* Header Mobile view */


/* =========================
MOBILE OFFCANVAS MENU
========================= */

.mb-menu {
    display: none;
}


/* Hamburger */

.menu-btn {
    width: 30px;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    height: 3px;
    background: white;
    margin: 6px 0;
}


/* Overlay - Fixed to prevent body scroll */

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.offcanvas-overlay.mactive {
    opacity: 1;
    visibility: visible;
}


/* Offcanvas Menu - Fixed positioning and scrolling */

.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    /* Full viewport height */
    background-color: var(--primary-color);
    z-index: 1001;
    transition: left 0.4s ease;
    overflow: hidden;
    /* Prevent outer scroll */
    display: flex;
    flex-direction: column;
}

.offcanvas-menu.mactive {
    left: 0;
}


/* Header */

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-shrink: 0;
    /* Prevent header from scrolling */
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.offcanvas-header img {
    width: 150px;
}

.close-btn {
    font-size: 28px;
    color: white;
    cursor: pointer;
    line-height: 0.6;
    padding: 8px;
    background: black;
    border-radius: 100%;
}


/* Links Container - This is the scrollable part */

.offcanvas-links {
    list-style: none;
    margin: 0;
    padding: 20px;
    flex: 1;
    /* Take remaining space */
    overflow-y: auto;
    /* Enable vertical scroll ONLY on menu items */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    display: flex;
    flex-direction: column;
}

.has-submenu {
    overflow: visible;
}


/* Custom scrollbar for offcanvas menu */

.offcanvas-links::-webkit-scrollbar {
    width: 6px;
}

.offcanvas-links::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.offcanvas-links::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.offcanvas-links::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

.offcanvas-links li {
    margin-top: -20px;
}

.offcanvas-links a,
.submenu-toggle {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    padding: 10px 0;
}


/* Prevent body scroll when menu is open */

body.menu-open {
    overflow: hidden;
    position: fixed;
}


/* Submenu */

.mobile-submenu {
    display: none;
    margin-top: 10px;
    padding-left: 15px;
    overflow: scroll;
}

.mobile-submenu.mactive {
    display: block;
}

.mobile-submenu li {
    display: flex;
    flex-direction: column;
}

.mobile-submenu li a {
    font-size: 14px;
    font-weight: normal;
    color: black;
    padding: 8px 0;
}


/* Contact Button */

.contact-mobile {
    background: black;
    color: white !important;
    padding: 10px;
    border-radius: 20px;
    margin-top: 10px;
    text-align: center;
}


/* MOBILE ONLY */

@media (max-width: 768px) {
    .menus,
    .contact {
        display: none;
    }
    .mb-menu {
        display: block;
        position: absolute;
        right: 30px;
        top: 46px;
    }
    .top-bar {
        display: none;
    }
    .bottom-bar {
        display: flex;
        flex-direction: row;
        margin-top: -30px;
        ;
    }
    .logo {
        margin-right: 300px;
        height: 130px;
        width: 150px;
        padding: 20px;
    }
}


/* Body */


/* Our Business */

:root {
    --gold: #F8AE3A;
    --gold-light: #FDD98A;
    --gold-dark: #C8851A;
    --black: #0A0A0A;
    --off-black: #111111;
    --dark-surface: #161616;
    --card-bg: #1C1C1C;
    --text-primary: #F5F0E8;
    --text-muted: #8A8375;
    --text-accent: #F8AE3A;
    --border: rgba(248, 174, 58, 0.15);
    --border-hover: rgba(248, 174, 58, 0.4);
    --primary-color: #F8AE3A;
    --card-w: 180px;
    --card-h: 230px;
    --gap: 14px;
    --radius: 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    background: var(--black);
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}


/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding-top: 50px;
}

.himg img {
    width: 700px;
    height: 500px;
    margin-left: -250px;
    padding: 30px;
    margin-top: -150px;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(248, 174, 58, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(248, 174, 58, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 174, 58, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 28px;
    max-width: 800px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.stat-item .number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-item .label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* SECTION LABEL */

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}


/* MARQUEE */

.marquee-strip {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    background: var(--off-black);
}

.marquee-track {
    display: flex;
    gap: 64px;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee-strip:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    font-weight: 500;
    text-transform: uppercase;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}


/* BUSINESSES SECTION */

.businesses-section {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-top: 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 72px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.7;
}


/* CAROUSEL APP */

.app {
    width: 100%;
    max-width: 1000px;
    height: 480px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22), 0 8px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    position: relative;
    margin: 0 auto 60px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px 14px;
    background: #fff;
    position: relative;
    z-index: 10;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.disney-logo {
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1px;
    color: #000;
    font-family: Georgia, serif;
}

.nav-brand span {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.5px;
}

.carousel-area {
    position: relative;
    padding: 10px 0 0;
    overflow: visible;
}

.carousel-viewport {
    overflow: visible;
    padding: 60px 22px 16px;
    margin-left: 80px;
    margin-right: 55px;
}

.carousel-track {
    display: flex;
    gap: var(--gap);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.char-card {
    flex: 0 0 160px;
    width: 200px;
    height: 250px;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    overflow: visible;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    user-select: none;
    background-color: var(--gold);
}

.char-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.card-bg {
    width: 80%;
    height: 100%;
    border-radius: 20px;
    position: absolute;
    inset: 0;
    transition: filter 0.3s;
    background-color: var(--gold);
}

.theme-rosetta,
.theme-sadness,
.theme-disgust,
.theme-judy,
.theme-moana,
.theme-vanellope,
.theme-anna {
    background: #f8ae3a;
}

.card-img-wrap {
    position: absolute;
    bottom: 52px;
    left: 40%;
    transform: translateX(-50%);
    width: 130%;
    height: 90%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    top: -40%;
    transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.char-card:hover .card-img-wrap {
    transform: translateX(-50%) translateY(-8px) scale(1.05);
}

.card-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
    display: block;
}

.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px 14px;
    border-radius: 0 0 20px 20px;
    z-index: 3;
}

.card-label h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: bolder;
    color: black;
    line-height: 1.1;
    letter-spacing: 0.2px;
    margin-top: -120px;
}

.card-label p {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.read-more {
    font-family: 'Playfair Display', serif;
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-size: 14px;
    font-weight: bolder;
    color: black;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 4;
    opacity: 10;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.read-more svg {
    width: 10px;
    height: 10px;
}

.char-card:hover .read-more {
    opacity: 1;
    transform: translateY(0);
}

.char-card:hover .card-label h3 {
    margin-bottom: 14px;
}

.is-inactive {
    filter: brightness(0.85) saturate(0.8);
    transform: scale(0.96);
}

.carousel-area::before,
.carousel-area::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 5;
    pointer-events: none;
}

.carousel-area::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.carousel-area::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 22px 20px;
}

.nav-btns {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    padding: 7px 12px;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.nav-btn:hover {
    background: #f4f4f4;
}

.nav-btn:disabled {
    color: #ccc;
    cursor: default;
}

.nav-btn:disabled:hover {
    background: none;
}

.nav-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: scale(0);
    animation: ripple-anim 0.55s linear;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


/* ══════════════════════════════
   DETAIL OVERLAY — DESKTOP
══════════════════════════════ */

.detail-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    padding: 20px;
}

.detail-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.detail-modal {
    background: var(--black);
    border: 1px solid var(--border);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-overlay.active .detail-modal {
    transform: translateY(0) scale(1);
}

.detail-modal-left {
    position: relative;
    background: var(--black);
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-right: 1px solid var(--border);
}

.detail-modal-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
}

.detail-modal-number {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    color: rgba(248, 174, 58, 0.08);
    line-height: 1;
    pointer-events: none;
}

.detail-modal-img {
    width: 80%;
    max-height: 380px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
    position: relative;
    z-index: 1;
}

.detail-modal-right {
    padding: 48px 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: var(--black);
}

.detail-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 18px;
    transition: background 0.2s, color 0.2s;
}

.detail-close:hover {
    background: var(--border-hover);
    color: var(--text-primary);
}

.detail-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.detail-name {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
}

.detail-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    flex: 1;
}

.detail-desc b {
    color: var(--text-primary);
    font-weight: 500;
}

.detail-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 14px 28px;
    background: var(--gold);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    border-radius: 8px;
    width: fit-content;
}

.detail-link:hover {
    background: var(--gold-light);
}

.detail-link svg {
    width: 14px;
    height: 14px;
}


/* REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.30s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}


/* ══════════════════════════════
   MOBILE ≤ 768px
══════════════════════════════ */

@media (max-width: 768px) {
    /* Header */
    .menus,
    .contact {
        display: none;
    }
    .mb-menu {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    .top-bar {
        display: none;
    }
    .bottom-bar {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 70px;
        padding: 0 16px;
        margin-top: 0;
    }
    .logo {
        margin-left: 100px;
        height: 50px;
        width: auto;
        padding: 0px;
    }
    .logo img {
        height: 44px;
        width: auto;
    }
    /* Hero */
    .hero {
        flex-direction: column;
        padding-top: 20px;
        min-height: auto;
        padding-bottom: 40px;
    }
    .hero-content {
        padding: 32px 20px 20px;
    }
    .hero h1 {
        font-size: clamp(36px, 10vw, 56px);
        margin-bottom: 20px;
    }
    .hero-sub {
        font-size: 14px;
        margin-bottom: 32px;
        max-width: 100%;
    }
    .hero-stats {
        gap: 20px;
        padding-top: 28px;
        flex-wrap: wrap;
    }
    .stat-item .number {
        font-size: 32px;
    }
    .himg img {
        width: 500px;
        height: 500px;
        margin-left: 0px;
        padding: 100px;
        margin-top: -60px;
    }
    /* Businesses */
    .businesses-section {
        flex-direction: column;
        padding-top: 40px;
        padding-left: 12px;
        padding-right: 12px;
        gap: 0;
    }
    .section-header {
        order: -1;
        padding: 0 8px;
        margin-bottom: 28px;
    }
    .section-header h2 {
        font-size: clamp(26px, 8vw, 36px);
    }
    .section-header p {
        font-size: 14px;
    }
    /* Carousel */
    .app {
        height: auto;
        min-height: 340px;
        border-radius: 20px;
        margin-bottom: 32px;
        width: 100%;
    }
    .navbar {
        padding: 12px 14px 10px;
    }
    .disney-logo {
        font-size: 17px;
    }
    .nav-brand span {
        font-size: 15px;
    }
    .carousel-viewport {
        padding: 48px 10px 10px;
        margin-left: 0;
        margin-right: 0;
    }
    .carousel-area::before,
    .carousel-area::after {
        width: 16px;
    }
    .char-card {
        height: 195px;
    }
    .card-bg {
        width: 100%;
    }
    .card-img-wrap {
        top: -55%;
    }
    .card-label h3 {
        font-size: 11px;
        margin-top: -88px;
    }
    .card-label p {
        font-size: 9px;
        line-height: 1.3;
    }
    .footer-bar {
        padding: 4px 10px 12px;
    }
    .nav-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
    .read-more {
        font-size: 8px;
    }
    /* ════════════════════════════
       POPUP FIX — KEY SECTION
       Image on top, text below,
       full page scroll
    ════════════════════════════ */
    .detail-overlay {
        padding: 0;
        align-items: flex-start;
        /* start at top */
        overflow-y: scroll;
        /* THE FIX: overlay itself scrolls */
        -webkit-overflow-scrolling: touch;
    }
    .detail-modal {
        grid-template-columns: 1fr;
        /* stack vertically */
        grid-template-rows: auto auto;
        width: 100%;
        max-width: 100%;
        max-height: none;
        /* no height limit = full content */
        min-height: 100%;
        border-radius: 0;
        margin: 0;
        transform: translateY(30px);
        border: none;
    }
    .detail-overlay.active .detail-modal {
        transform: translateY(0);
    }
    /* Left = image panel on top */
    .detail-modal-left {
        min-height: 270px;
        border-right: none;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .detail-modal-img {
        width: 60%;
        max-height: 220px;
        object-fit: contain;
    }
    .detail-modal-number {
        font-size: 52px;
    }
    /* Right = text panel below, no inner scroll */
    .detail-modal-right {
        padding: 28px 20px 50px;
        overflow-y: visible;
        /* outer overlay scrolls, not this div */
        flex: 1;
    }
    .detail-name {
        font-size: 24px;
    }
    .detail-desc {
        font-size: 14px;
        line-height: 1.8;
    }
    .detail-link {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        margin-top: 24px;
    }
    /* Close button fixed top-right */
    .detail-close {
        position: fixed;
        top: 14px;
        right: 14px;
        background: rgba(0, 0, 0, 0.75);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: white;
        z-index: 10001;
        width: 38px;
        height: 38px;
    }
}


/* SMALL PHONES ≤ 480px */

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(30px, 9vw, 44px);
    }
    .stat-item .number {
        font-size: 26px;
    }
    .app {
        min-height: 300px;
    }
    .char-card {
        height: 175px;
    }
    .card-img-wrap {
        top: -58%;
    }
    .card-label h3 {
        font-size: 10px;
        margin-top: -80px;
    }
    .detail-modal-left {
        min-height: 240px;
    }
    .detail-modal-img {
        width: 80%;
        max-height: 290px;
    }
}


/* Footer */

.footer {
    background-color: black;
}

.footer-container {
    padding: 50px;
    display: grid;
    grid-template: 1fr/repeat(4, 1fr);
    align-content: center;
    justify-content: center;
    gap: 30px;
}

.about-company h3 {
    font-weight: bold;
    background-color: var(--primary-color);
    width: fit-content;
    padding: 10px;
    border-radius: 20px;
}

.about-company p {
    color: white;
    line-height: 2em;
    width: 300px;
}

.about-company img {
    height: 100px;
    width: 200px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.our-business h3 {
    font-weight: bold;
    background-color: var(--primary-color);
    width: fit-content;
    padding: 10px;
    border-radius: 20px;
}

.quick-links {
    margin-left: 50px;
    ;
}

.quick-links h3 {
    font-weight: bold;
    background-color: var(--primary-color);
    width: fit-content;
    padding: 10px;
    border-radius: 20px;
}

.links li {
    display: flex;
    flex-direction: row;
    list-style: none;
}

.links li a {
    color: white;
    text-decoration: none;
}

li a:hover {
    background-image: linear-gradient(to right, #f8ae3a, #ffffff) !important;
    color: black;
    padding: 10px;
    border-radius: 20px;
    font-weight: bold;
}

.contact-details h3 {
    font-weight: bold;
    background-color: var(--primary-color);
    width: fit-content;
    padding: 10px;
    border-radius: 20px;
}

.contact-details li {
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: white;
}

.contact-details li img {
    height: 20px;
    width: 20px;
    margin-top: 5px;
}

.contact-details li p {
    color: white;
}

.copyright p {
    color: white;
    margin-left: 600px;
    padding-bottom: 30px;
}


/* Mobile Footer */

@media (max-width: 768px) {
    .footer {
        margin-top: 50px;
    }
    .footer-container {
        display: grid;
        grid-template: 4fr/ 1fr;
        padding: 50px;
    }
    .about-company {
        text-align: center;
    }
    .about-company h3 {
        margin-left: 90px;
    }
    .about-company p {
        font-size: 18px;
        margin-left: 30px;
    }
    .our-business li {
        font-size: 15px;
        padding-left: 20px;
    }
    .quick-links {
        margin-left: 150px;
        margin-top: -365px;
    }
    .quick-links h3 {
        margin-left: 50px;
        white-space: nowrap;
    }
    .quick-links li {
        margin-left: 100px;
        font-size: 15px;
    }
    .contact-details {
        margin-top: -20px;
        padding-left: 20px;
    }
    .contact-details h3 {
        margin-left: 20px;
    }
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .copyright {
        display: none;
    }
    .mobile-copyright p {
        color: white;
        padding: 10px;
    }
}