/* ============================================
   BBQ Restaurant - Main Stylesheet
   Clean, organized CSS structure
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    scroll-padding-top: 0;
}


body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: auto;
    background: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   COLOR PALETTE
   ============================================ */
:root {
    --primary-red: #7a001b;
    --gold: #fddb92;
    --dark-red: #4a000f;
    --light-gold: #fde9c4;
    --cream: #f8d9a0;
    --dark-brown: #3c2414;
    --text-dark: #2c1810;
}


/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(122, 0, 27, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-logo {
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo-img {
    display: flex;
    align-items: center;
}

.nav-logo-img img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-text h1 {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.nav-logo-text p {
    color: white;
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
    line-height: 1.2;
    margin-top: 0.1rem;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */
.language-toggle {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.lang-btn {
    background: var(--gold);
    color: var(--primary-red);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-btn:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

[data-zh][data-en] {
    transition: all 0.3s ease;
}

/* ============================================
   MESSAGES
   ============================================ */
.messages-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    max-width: 400px;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    color: white;
    font-weight: 500;
}

.alert-success {
    background: #28a745;
}

.alert-error {
    background: #dc3545;
}

.alert-info {
    background: #17a2b8;
}

/* ============================================
   HERO SECTION
   ============================================ */
:root {
    --video-scale: 1.4;
    /* Adjust this value (0.5-1.5) to scale video size. 1.0 = 400px height, 0.8 = 320px, etc. */
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dragon" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,2 L18,10 L10,18 L2,10 Z" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dragon)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
    min-height: 60vh;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: 2rem;
    color: white;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--light-gold);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.delivery-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
    justify-content: flex-start;
}

.delivery-buttons .delivery-btn {
    flex: 0 0 auto;
}

.delivery-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
}

.delivery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: rgba(255, 255, 255, 0.2);
}

.delivery-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.fantuan-btn {
    border-color: #FF6B35;
}

.fantuan-btn:hover {
    background: #FF6B35;
    border-color: #FF6B35;
}

.ubereats-btn {
    border-color: #06C167;
}

.ubereats-btn:hover {
    background: #06C167;
    border-color: #06C167;
}

.skip-btn {
    border-color: #FFD700;
}

.skip-btn:hover {
    background: #FFD700;
    border-color: #FFD700;
    color: var(--primary-red);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-red);
    transform: translateY(-3px);
}

.food-showcase {
    position: relative;
    animation: fadeInRight 1s ease-out 0.8s both;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-video-container {
    position: relative;
    width: 100%;
    max-width: calc(225px * var(--video-scale));
    /* Width scales with --video-scale */
    height: calc(400px * var(--video-scale));
    /* Height scales with --video-scale */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 1s ease-out 0.8s both;
    background: #000;
    margin: 0 auto;
    /* Center the container */
    aspect-ratio: 9 / 16;
    /* Maintain 9:16 aspect ratio */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
    border-radius: 20px;
    display: block;
    z-index: 1;
}

.food-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: none;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.food-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.food-item:hover {
    transform: none;
}

.food-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    transform: scale(1) !important;
}

.food-item:hover {
    transform: scale(1.05);
}

.food-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 1 !important;
    transform: scale(1) !important;
}

.food-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
    z-index: 10;
}

.food-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* ============================================
   ORDER NOW SECTION
   ============================================ */
.order-now {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-gold);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.order-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: var(--dark-brown);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--light-gold);
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), #9a0023);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.platform-icon i {
    font-size: 2.5rem;
    color: var(--gold);
}

.platform-card h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin: 0;
    font-weight: 700;
}

.platform-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.platform-card:hover h3 {
    color: var(--dark-red);
}

.platform-card:hover p {
    color: var(--dark-brown);
}

/* ============================================
   FEATURED DISHES SECTION
   ============================================ */
.featured-dishes {
    padding: 6rem 0;
    background: var(--cream);
}

.menu-items {
    padding: 4rem 0 1rem 0;
    background: var(--cream);
}

.menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.traditional-bbq-grid {
    grid-template-columns: repeat(3, 1fr);
}

.traditional-bbq {
    padding: 2rem 0 1rem 0;
    background: var(--cream);
    margin: 0;
}

.traditional-bbq .container {
    padding-top: 0;
}

.combo-menu {
    padding: 2rem 0 1rem 0;
    margin: 0;
    background: var(--cream);
}

.combo-menu .container {
    padding-top: 0;
}

.traditional-bbq-title {
    text-align: center;
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.dish-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
}

.dish-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dish-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--cream);
}

.dish-image img,
.dish-img-clickable {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    opacity: 1 !important;
    transform: scale(1) !important;
    cursor: pointer;
}

.dish-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, #f0e6d2 100%);
    border: 2px dashed rgba(122, 0, 27, 0.3);
    cursor: default;
}

.coming-soon-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(122, 0, 27, 0.6);
    text-align: center;
    font-style: italic;
}

.dish-image.no-photo {
    cursor: pointer;
}

.dish-image img:hover,
.dish-img-clickable:hover {
    transform: scale(1.05) !important;
}

.dish-card:hover .dish-image img {
    transform: scale(1.1);
}

.dish-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dish-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dish-content h3 {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dish-name-english {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dish-price {
    font-size: 1.75rem;
    color: var(--primary-red);
    font-weight: 700;
    margin-top: auto;
    margin-bottom: 0;
    text-align: center;
    padding: 1rem;
    background: var(--light-gold);
    border-radius: 10px;
}

.dish-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.no-dishes {
    text-align: center;
    padding: 3rem;
    color: var(--dark-brown);
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-brown);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    justify-items: center;
    text-align: center;
}

.footer-content>.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-red);
    transform: translateY(-3px);
}


.footer-delivery-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.5rem;
}

.footer-delivery-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 100%;
    max-width: 200px;
    justify-content: center;
}

.footer-delivery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.footer-delivery-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.footer-delivery-btn.fantuan-btn {
    border-color: var(--gold);
}

.footer-delivery-btn.fantuan-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-red);
}

.footer-delivery-btn.ubereats-btn {
    border-color: var(--gold);
}

.footer-delivery-btn.ubereats-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-red);
}

.footer-delivery-btn.skip-btn {
    border-color: var(--gold);
}

.footer-delivery-btn.skip-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-red);
}

.footer-delivery-btn.footer-link-btn {
    border-color: var(--gold);
}

.footer-delivery-btn.footer-link-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-red);
}

.footer-delivery-btn.footer-social-btn {
    border-color: var(--gold);
}

.footer-delivery-btn.footer-social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   PEANUT ALLERGY WARNING POPUP
   ============================================ */
.peanut-warning-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    backdrop-filter: none;
    animation: fadeIn 0.3s ease;
    pointer-events: none;
}

.peanut-warning-modal.show {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: auto;
}

.peanut-warning-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 320px;
    width: auto;
    max-height: auto;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    border: 2px solid var(--primary-red);
    margin: 0 20px 20px 0;
    opacity: 0.95;
}

.peanut-warning-header {
    background: linear-gradient(135deg, var(--primary-red), #9a0023);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.peanut-warning-header i {
    font-size: 1.2rem;
    color: var(--gold);
}

.peanut-warning-header h3 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.peanut-warning-body {
    padding: 1rem;
}

.peanut-warning-body p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dark-brown);
    margin: 0;
    text-align: left;
}

.peanut-warning-text-chinese {
    margin-bottom: 1rem !important;
    font-weight: 500;
}

.peanut-warning-text-english {
    font-style: italic;
    color: #555;
}

.peanut-warning-footer {
    padding: 0.75rem 1rem 1rem;
    text-align: center;
}

.peanut-warning-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans SC', sans-serif;
    box-shadow: 0 2px 8px rgba(122, 0, 27, 0.2);
}

.peanut-warning-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 0, 27, 0.4);
}

.peanut-warning-btn:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.back-to-top-btn {
    position: fixed;
    top: 120px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(122, 0, 27, 0.3);
}

.back-to-top-btn.visible {
    opacity: 0.95;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(122, 0, 27, 0.4);
}

.back-to-top-btn:active {
    transform: translateY(-1px);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 1024px) {
    .order-platforms {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .order-now {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .order-platforms {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .platform-card {
        padding: 2rem 1.5rem;
    }

    .platform-icon {
        width: 70px;
        height: 70px;
    }

    .platform-icon i {
        font-size: 2rem;
    }

    .platform-card h3 {
        font-size: 1.3rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-red);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        transform: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 1rem;
        min-height: 50vh;
    }

    .hero-image {
        min-height: 300px;
    }

    .hero-video-container {
        max-width: min(calc(225px * var(--video-scale)), 80vw);
        /* Responsive width on mobile */
        height: calc(350px * var(--video-scale));
        /* Shorter on mobile, scales with --video-scale */
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .delivery-buttons {
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .delivery-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        flex: 0 1 auto;
    }

    .delivery-icon {
        width: 20px;
        height: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-delivery-buttons {
        gap: 0.6rem;
    }

    .footer-delivery-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        max-width: 180px;
    }

    .footer-delivery-icon {
        width: 18px;
        height: 18px;
    }

    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .traditional-bbq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .language-toggle {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .nav-logo-img img {
        height: 50px;
    }

    .nav-logo-text h1 {
        font-size: 1.5rem;
    }

    .nav-logo-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-logo-img img {
        height: 40px;
    }

    .nav-logo-text h1 {
        font-size: 1.3rem;
    }

    .nav-logo-text p {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .peanut-warning-content {
        max-width: calc(100% - 40px);
        margin: 0 15px 15px 0;
    }

    .peanut-warning-header {
        padding: 0.6rem 0.8rem;
        flex-direction: row;
        text-align: left;
    }

    .peanut-warning-header i {
        font-size: 1rem;
    }

    .peanut-warning-header h3 {
        font-size: 0.85rem;
    }

    .peanut-warning-body {
        padding: 0.8rem;
    }

    .peanut-warning-body p {
        font-size: 0.8rem;
    }

    .peanut-warning-text-chinese {
        margin-bottom: 0.6rem !important;
    }

    .peanut-warning-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
        width: auto;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
    }

    .traditional-bbq-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding-top: 140px;
    padding-bottom: 4rem;
    background: var(--cream);
    min-height: calc(100vh - 200px);
}

.contact-title {
    text-align: center;
    color: var(--primary-red);
    font-size: 3rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    background: var(--light-gold);
    border-radius: 50%;
}

.contact-details h3 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--dark-red);
    text-decoration: underline;
}

.map-container {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* ============================================
   PRICE DISCLAIMER BANNER
   ============================================ */
.price-disclaimer-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(122, 0, 27, 0.95);
    color: white;
    padding: 0.5rem 0;
    text-align: center;
    z-index: 998;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    opacity: 0;
}

.price-disclaimer-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.price-disclaimer-text {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0 1rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .price-disclaimer-banner {
        padding: 0.4rem 0;
    }

    .price-disclaimer-text {
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }
}

/* ============================================
   IMAGE VIEW MODAL
   ============================================ */
.image-view-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.image-view-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-view-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: var(--cream);
    border-radius: 15px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(122, 0, 27, 0.1);
}

.image-view-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(122, 0, 27, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.image-view-close:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

.image-view-header {
    padding: 2rem 2rem 1rem 2rem;
    background: var(--cream);
    border-bottom: 2px solid rgba(122, 0, 27, 0.1);
}

.image-view-title {
    color: var(--primary-red);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.image-view-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.image-view-category {
    color: var(--dark-brown);
    font-size: 1rem;
    font-weight: 500;
}

.image-view-price {
    color: var(--primary-red);
    font-size: 1.3rem;
    font-weight: 700;
}

.image-view-description {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.image-view-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    min-height: 400px;
    overflow: visible;
}

.image-view-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
}

.image-view-image-container img {
    max-width: 100%;
    max-height: calc(90vh - 300px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

.modal-coming-soon {
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, #f0e6d2 100%);
    border: 2px dashed rgba(122, 0, 27, 0.3);
    border-radius: 10px;
}

.modal-coming-soon-text {
    font-size: 2.5rem;
    font-weight: 500;
    color: rgba(122, 0, 27, 0.6);
    text-align: center;
    font-style: italic;
}

.image-view-arrow {
    background: rgba(122, 0, 27, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
    line-height: 1;
}

.image-view-arrow:hover {
    background: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.image-view-arrow-left {
    left: 20px;
}

.image-view-arrow-right {
    right: 20px;
}

.image-view-counter {
    text-align: center;
    padding: 1rem;
    background: var(--cream);
    color: var(--dark-brown);
    font-size: 0.9rem;
    border-top: 2px solid rgba(122, 0, 27, 0.1);
}

@media (max-width: 768px) {
    .image-view-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .image-view-header {
        padding: 1.5rem 1rem 1rem 1rem;
    }

    .image-view-title {
        font-size: 1.5rem;
    }

    .image-view-body {
        padding: 1rem;
        min-height: 300px;
    }

    .image-view-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .image-view-arrow-left {
        left: 10px;
    }

    .image-view-arrow-right {
        right: 10px;
    }
}