/* style.css */
:root {
    --color-white: #ffffff;
    --color-bg-left: #fcfbfa;
    --color-bg-middle: #f6ebe0;
    --color-bg-right: #e6d6c3;
    --color-primary: #e6cead;
    /* Buttons, highlights */
    --color-primary-dark: #ccb392;
    --color-text-main: #1a1a1a;
    --color-text-light: #555555;

    --font-heading: 'Caveat Brush', cursive;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================================================
   HERO SECTION EXACT MATCH
   ========================================================================= */

.hero-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 800px;
    background-color: var(--color-bg-left);
    overflow: hidden;
}

/* =========================================================================
   PAGE LOADER / SPLASH SCREEN
   ========================================================================= */
#loader-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: #fdfafb;
    background-image: linear-gradient(rgba(240, 220, 225, 0.5) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(240, 220, 225, 0.5) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 1.2s ease;
}

.loader-text {
    position: absolute;
    text-align: center;
    transition: opacity 0.8s ease;
}

.loader-image-wrapper {
    position: absolute;
    width: 100%; height: 100%;
    display: flex; justify-content: center; align-items: center;
    pointer-events: none;
}

.loader-image-wrapper img {
    width: 600px;
    max-width: 90vw;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s ease;
    mix-blend-mode: darken;
}

.main-plate.loading-hide {
    opacity: 0 !important;
}

/* Background vertical stripes */
.bg-rect {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
}

.bg-rect-middle {
    left: 60%;
    width: 15%;
    background-color: var(--color-bg-middle);
}

.bg-rect-right {
    left: 75%;
    width: 25%;
    background-color: var(--color-bg-right);
}

/* Background Circle top left - Deprecated as it's now integrated in .logo */
.bg-circle-logo-bg {
    display: none;
}

/* Header */
.header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
    z-index: 10;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: var(--font-body);
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    color: var(--color-text-main);
    padding-left: 10px;
}

/* Tan Circle Behind Logo */
.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    background-color: #eedcc0;
    border-radius: 50%;
    z-index: -1;
}

/* Black Line Under CIS */
.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10px;
    width: 45px;
    height: 3px;
    background-color: var(--color-text-main);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    font-size: 14px;
    font-weight: 500;
}

/* The visual boundary shifts, Contact is on the middle color, Login on the right color */
.nav ul li.nav-contact {
    margin-left: 20px;
}

.header-right {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
}

.header-right a {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Content Flex */
.hero-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 60px 80px 0 80px;
    z-index: 5;
    height: calc(100vh - 150px);
}

.hero-left {
    width: 50%;
    padding-top: 40px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 450px;
}

.hero-cta {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.btn {
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
}

.btn-primary {
    background-color: var(--color-primary);
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-secondary {
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--color-text-main);
    text-decoration: underline;
    margin-left: 30px;
}

.btn-secondary:hover {
    color: var(--color-primary-dark);
}

/* Bottom left Sushi Cards */
.hero-cards {
    display: flex;
    gap: 30px;
}

.sushi-card {
    width: 200px;
}

.sushi-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
}

.sushi-price {
    border-bottom: 2px solid var(--color-text-main);
}

/* Right Side - Plate */
.hero-right {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-plate {
    width: 110%;
    max-width: 600px;
    transform: rotate(0deg) scale(1.1) translate(-20px, 0);
    mix-blend-mode: darken;
    /* Makes the generated white background blend smoothly with the layout colors! */
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1.1) translate(-20px, 0);
    }

    50% {
        transform: translateY(-15px) rotate(0.5deg) scale(1.1) translate(-20px, 0);
    }

    100% {
        transform: translateY(0px) rotate(0deg) scale(1.1) translate(-20px, 0);
    }
}

/* Social Icons */
.social-icons {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-size: 18px;
}

.social-icons a:hover {
    color: var(--color-primary-dark);
}

/* Next Box Background */
.next-box {
    position: absolute;
    bottom: 0;
    left: 55%;
    width: 15vw;
    height: 120px;
    background-color: var(--color-primary);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.next-btn {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: -30px;
}

.circle-arrow {
    width: 45px;
    height: 45px;
    border: 1px solid var(--color-text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.next-btn:hover .circle-arrow {
    background-color: var(--color-text-main);
    color: var(--color-white);
}


/* =========================================================================
   PROMOTIONS SECTION
   ========================================================================= */
.promotions-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.promo-banner {
    position: relative;
    background-color: #2c2c2c;
    /* Modern dark grey layout */
    background-image: url('assets/images/main_sushi_plate_1776880117125.png');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    color: var(--color-white);
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.promo-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.promo-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #e0e0e0;
}

.btn-light {
    background: var(--color-white);
    color: var(--color-text-main);
    padding: 12px 24px;
    border: none;
    font-weight: 600;
}


/* =========================================================================
   FEATURED DISHES
   ========================================================================= */
.featured-section {
    padding: 100px 0;
    background-color: #faf8f5;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--color-text-light);
    margin-bottom: 50px;
    font-size: 16px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.feature-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: block;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* =========================================================================
   MENU SECTION
   ========================================================================= */
.menu-section {
    padding: 100px 0;
}

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

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-btn {
    border: 1px solid #ccc;
    background: transparent;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--color-text-main);
    color: var(--color-white);
    border-color: var(--color-text-main);
}

.dietary-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: var(--color-text-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

/* Premium Card Design like a wooden tray base */
.menu-item-card {
    display: flex;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.menu-img-wrap {
    position: relative;
    width: 150px;
    flex-shrink: 0;
}

.menu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dietary-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tag {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
}

.tag.veg {
    background: #4caf50;
}

.tag.spicy {
    background: #f44336;
}

.menu-item-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-item-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-item-head h3 {
    font-size: 18px;
    margin-right: 10px;
}

.menu-item-head .price {
    font-weight: 700;
    color: var(--color-primary-dark);
    font-size: 18px;
}

.menu-item-info .desc {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 10px;
    flex-grow: 1;
}

.reviews {
    font-size: 12px;
    color: #ffc107;
    margin-bottom: 15px;
}

.btn-add-cart {
    align-self: flex-start;
    background: transparent;
    border: 1px solid var(--color-text-main);
    padding: 8px 16px;
    border-radius: 4px;
}

.btn-add-cart:hover {
    background: var(--color-text-main);
    color: var(--color-white);
}

/* =========================================================================
   VIDEO SECTION
   ========================================================================= */
.video-showcase {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(2px) brightness(0.6);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
}

.play-icon {
    font-size: 50px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-icon:hover {
    transform: scale(1.1);
}

.video-overlay h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 10px;
}

.video-overlay p {
    font-size: 16px;
    font-weight: 300;
}

/* =========================================================================
   STORY / BEHIND THE SCENES SECTION (Refined Light Theme)
   ========================================================================= */
.story-section {
    background-color: var(--color-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.story-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-image-column {
    flex: 1;
    position: relative;
    padding: 20px 0 20px 20px;
}

.story-image-bg {
    position: absolute;
    top: 0; left: 0;
    width: 80%; height: 100%;
    background-color: var(--color-bg-middle);
    border-radius: 12px;
    z-index: 0;
}

.story-image-column .story-img {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    z-index: 1;
    display: block;
    margin-left: auto;
}

.story-text-column {
    flex: 1;
    padding-right: 40px;
}

.story-subtitle {
    color: var(--color-primary-dark);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--color-text-main);
    line-height: 1.1;
    margin-bottom: 35px;
}

.story-content {
    position: relative;
    padding-left: 30px;
    border-left: 3px solid var(--color-primary);
}

.story-quote-icon {
    position: absolute;
    top: -15px;
    left: -20px;
    background: var(--color-white);
    padding: 10px;
    color: var(--color-primary);
    font-size: 24px;
}

.story-text {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-text.main-quote {
    color: var(--color-text-main);
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background: #111;
    color: #eee;
    padding: 80px 0 20px 0;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-flex;
    color: var(--color-white);
}

.footer-brand .logo::after {
    background: var(--color-white);
}

.footer-brand p {
    color: #aaa;
    line-height: 1.6;
    max-width: 300px;
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer p {
    color: #aaa;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-social .social-links {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.footer-social a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 13px;
    color: #777;
}

/* =========================================================================
   MODAL
   ========================================================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.modal-content h2 {
    font-size: 22px;
    margin-bottom: 5px;
}

.modal-price {
    font-weight: 600;
    color: var(--color-primary-dark);
    font-size: 18px;
    margin-bottom: 20px;
}

.modal-options label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.modal-options select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.addons p {
    font-weight: 500;
    margin-bottom: 10px;
}

.addons label {
    font-weight: 400;
    font-size: 14px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

/* Cart Dining Toggle UI */
.dining-toggle-container {
    padding: 15px 20px 0;
}
.dining-toggle {
    display: flex;
    background: #f0f0f0;
    border-radius: 8px;
    padding: 4px;
}
.dining-toggle .toggle-btn {
    flex: 1;
    padding: 8px 0;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 6px;
    color: var(--color-text-light);
}
.dining-toggle .toggle-btn.active {
    background: var(--color-white);
    color: var(--color-text-main);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Mobile Bottom Nav System */
.mobile-bottom-nav {
    display: none;
}

/* Fullscreen Menu Drawer Menu Base (Hidden natively, active class toggled) */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(253, 250, 251, 0.98);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1; 
    pointer-events: all;
}
.close-mobile-menu {
    position: absolute;
    top: 25px; right: 30px;
    background: none; border: none;
    font-size: 50px; cursor: pointer;
    color: var(--color-text-main);
    transition: color 0.3s transform 0.3s;
}
.close-mobile-menu:hover {
    transform: scale(1.1);
}
.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--color-text-main);
    text-decoration: none;
    transition: color 0.3s;
}
.mobile-nav-links a:hover {
    color: var(--color-primary-dark);
}

/* Responsiveness */
@media (max-width: 992px) {

    .story-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    .story-image-column .story-img {
        height: 400px;
    }
    .story-text-column {
        padding-right: 0;
        text-align: center;
    }
    .story-content {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }
    .story-quote-icon {
        position: static;
        display: block;
        margin: 0 auto 15px auto;
        background: transparent;
    }

    .bg-rect-middle,
    .bg-rect-right,
    .next-box {
        display: none;
    }

    .hero-content {
        flex-direction: column-reverse;
        padding: 20px 40px;
        align-items: center;
        text-align: center;
        height: auto;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        top: 0;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 30px auto;
    }

    .hero-cards {
        justify-content: center;
    }

    .social-icons {
        display: none;
    }

    .promotions-section,
    .featured-section,
    .menu-section {
        padding: 50px 0;
    }

    .featured-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Navigation adjustments */
    .header {
        padding: 20px 40px;
        flex-direction: column;
        gap: 20px;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav ul li.nav-contact {
        margin-left: 0;
    }

    .category-tabs {
        flex-wrap: wrap;
    }

    .dietary-filters {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {



    /* Hide the PC nav blocks to keep header pristine */
    .header .nav,
    .header .header-right {
        display: none !important;
    }

    /* Change header to space-between so Logo goes left, and hamburger right */
    .header {
        flex-direction: row;
        justify-content: space-between !important;
        align-items: center;
        padding: 25px 20px;
    }
    
    .mobile-hamburger {
        display: block !important;
    }



    /* Show mobile app bottom navigation */
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border-top: 1px solid #eaeaea;
        padding: 10px 0 15px;
        /* Gives nice spacing at bottom of phone */
        z-index: 1500;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.06);
    }

    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--color-text-light);
        font-size: 13px;
        gap: 6px;
        transition: color 0.3s;
    }

    .mobile-bottom-nav .nav-item i {
        font-size: 22px;
    }

    .mobile-bottom-nav .nav-item:hover {
        color: var(--color-text-main);
    }

    /* Lift and enlarge center item per user request */
    .mobile-bottom-nav .center-item {
        transform: translateY(-5px);
    }

    .mobile-bottom-nav .center-item i {
        font-size: 30px;
        color: var(--color-text-main);
        background: transparent;
    }

    body {
        padding-bottom: 80px;
        /* Prevent footer text from being hidden behind bar */
    }

    /* Keep existing layout scales */
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 48px;
    }

    .page-title {
        font-size: 40px !important;
    }

    .hero-content {
        padding: 10px 20px;
    }

    .hero-cards {
        flex-direction: column;
        align-items: center;
    }

    .sushi-card {
        width: 100%;
        max-width: 300px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-img-wrap {
        width: 120px;
    }

    .menu-item-info {
        padding: 15px;
    }

    .video-showcase {
        height: 300px;
    }

    .promo-banner {
        padding: 30px 20px;
    }

    .promo-content h2 {
        font-size: 28px;
    }

    .contact-grid {
        padding: 30px 0;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .page-title {
        font-size: 32px !important;
    }

    /* header-right removed since it's hidden */

    .menu-item-card {
        flex-direction: column;
    }

    .menu-img-wrap {
        width: 100%;
        height: 200px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .btn-secondary {
        margin-left: 15px;
    }

    .page-header {
        padding: 60px 0 30px !important;
    }
}