/* ================== CSS VARIABLES ================== */
:root {
    --primary-red: #fc0d12;
    --dark-bg: #1a1a1a;
    --light-bg: #fbf9f0;
    --light-text: #fbf9f0;
    --dark-text: #1a1a1a;
    --font-primary: 'Kanit', sans-serif;
    --header-height-initial: 120px;
    --header-height-scrolled: 80px;
    --nice-orange: #F5A623;
}

/* ================== GENERAL STYLES ================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 170px;
}
body { font-family: var(--font-primary); background-color: var(--dark-bg); color: var(--light-text); font-weight: 300; }
body.body-scroll-lock, body.mobile-nav-open { overflow: hidden; }

h1, h2, h3 { line-height: 1.2; font-weight: 700; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin-left: auto; margin-right: auto; padding: 0 20px; }
.section-title { font-size: 3.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 20px; }
.text-center { text-align: center; }
.highlight-red { color: var(--primary-red); }

/* ================== ANIMATIONS ================== */
.anim-slide-up {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.anim-slide-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.section-subtitle.anim-slide-up,
.menu-hero-subtitle.anim-slide-up { transition-delay: 0.1s; }
.btn.anim-slide-up { transition-delay: 0.2s; }

/* ================== BUTTONS ================== */
.btn { display: inline-block; padding: 12px 30px; border-radius: 50px; font-weight: 600; text-transform: uppercase; transition: all 0.3s ease; border: 2px solid transparent; }
.btn-primary { background-color: var(--primary-red); color: #fff; border-color: var(--primary-red); }
.btn-primary:hover { transform: translateY(-3px); }
.btn-outline { background-color: transparent; color: var(--light-bg); border: 2px solid var(--light-bg); }
.btn-outline:hover { background-color: var(--light-bg); color: var(--dark-text); }
.btn-outline-dark { background-color: transparent; color: var(--dark-text); border: 2px solid var(--dark-text); }
.btn-outline-dark:hover { background-color: var(--dark-text); color: var(--light-bg); }

/* ================== HEADER ================== */
header { 
    position: fixed; 
    width: 100%; 
    top: 0; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000; 
    height: var(--header-height-initial); 
    background-color: transparent; 
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
header.scrolled { 
    background-color: rgba(26, 26, 26, 0.9); 
    backdrop-filter: blur(10px); 
    height: var(--header-height-scrolled);
    top: 20px;
    width: 95%;
    max-width: 1200px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.header-content { 
    height: 100%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.logo img { 
    height: 100px; 
    width: auto; 
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
header.scrolled .logo img {
    height: 60px;
}
.header-right { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; list-style: none; gap: 40px; align-items: center; }
.nav-links a { font-weight: 400; text-transform: uppercase; color: var(--light-text); transition: color 0.3s ease; position: relative; padding-bottom: 5px; }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-links li:first-child a::after { transform-origin: left; }
.nav-links li:nth-child(2) a::after, .nav-links li:nth-child(3) a::after { transform-origin: center; }
.nav-links li:last-child a::after { transform-origin: right; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: #fff; }

.menu-page-new header,
.contact-body header {
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    height: var(--header-height-scrolled);
    top: 20px;
    width: 95%;
    max-width: 1200px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.menu-page-new header .logo img,
.contact-body header .logo img {
    height: 60px;
}
.menu-page-new main,
.contact-body main {
    padding-top: calc(var(--header-height-scrolled) + 40px);
}

/* ================== HAMBURGER MENU & MOBILE NAV ================== */
#hamburger-btn {
    display: none; 
    background: none;
    border: none;
    width: 30px;
    height: 22px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1051;
    padding: 0;
}
#hamburger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--light-text);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
#hamburger-btn.is-active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
#hamburger-btn.is-active span:nth-child(2) { opacity: 0; }
#hamburger-btn.is-active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

#mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
#mobile-nav.is-active {
    opacity: 1;
    pointer-events: auto;
}
.mobile-nav-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}
.mobile-nav-content {
    position: absolute;
    top: 0;
    right: -100%; 
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--dark-bg);
    padding: 120px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-nav.is-active .mobile-nav-content {
    right: 0;
}
.mobile-nav-content ul {
    list-style: none;
}
.mobile-nav-content ul li {
    margin-bottom: 25px;
}
.mobile-nav-content ul a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-text);
    text-transform: uppercase;
}
.mobile-nav-content .btn {
    width: 100%;
    text-align: center;
}

/* ================== HERO SECTION ================== */
#hero { height: 400vh; position: relative; color: #fff; background-color: #000; }
.hero-sticky-container { position: sticky; top: 0; height: 100vh; width: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
#hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); z-index: -1; pointer-events: none; }

.canvas-loader { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 2rem; font-weight: 700; color: #fff; z-index: 10; font-family: var(--font-primary); text-transform: uppercase; letter-spacing: 2px; }

#hero-final-content { opacity: 0; pointer-events: none; z-index: 3; transition: opacity 0.5s ease; width: 100%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
#hero-final-content.play-anim { opacity: 1; pointer-events: auto; }

.hero-animation-wrapper { position: relative; height: 250px; margin-bottom: 20px; }
.hero-title-stacking, .hero-title-final { font-weight: 900; text-transform: uppercase; color: #fff; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); position: absolute; width: 100%; left: 0; top: 50%; transform: translateY(-50%); }
.hero-title-stacking { display: flex; flex-direction: column; justify-content: center; align-items: center; font-size: 5rem; }
.stack-line { display: block; line-height: 0.8; transform: translateY(150px); opacity: 0; }
.hero-title-stacking .stack-line:nth-child(1),
.hero-title-stacking .stack-line:nth-child(3) {
    color: transparent;
    -webkit-text-stroke-width: 1.7px;
    -webkit-text-stroke-color: var(--nice-orange);
    text-shadow: none;
}
.hero-title-final { display: flex; justify-content: center; align-items: center; gap: 0.25em; font-size: 6rem; }
.final-three, .final-stacks { opacity: 0; display: inline-block; }
.final-three { font-size: 7.5rem; }
@keyframes stack-in { 0% { transform: translateY(150px) scaleY(1.5); opacity: 0; } 80% { transform: translateY(-10px) scaleY(0.8); opacity: 1; } 100% { transform: translateY(0) scaleY(1); opacity: 1; } }
@keyframes merge-top-out { to { transform: translateY(100%) scaleY(0.5); opacity: 0; } }
@keyframes merge-middle-out { to { transform: scaleY(0.5); opacity: 0; } }
@keyframes merge-bottom-out { to { transform: translateY(-100%) scaleY(0.5); opacity: 0; } }
@keyframes final-title-in { to { opacity: 1; } }
@keyframes final-3-jump { 0% { transform: translateY(100px) scale(0.8); opacity: 0; } 70% { transform: translateY(-15px) scale(1.1); opacity: 1; } 100% { transform: translateY(0) scale(1); opacity: 1; } }
@keyframes hero-fade-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
#hero-final-content.play-anim .stack-line:nth-child(1) { animation: stack-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s forwards, merge-top-out 0.3s ease-in 1.1s forwards; }
#hero-final-content.play-anim .stack-line:nth-child(2) { animation: stack-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards, merge-middle-out 0.3s ease-in 1.1s forwards; }
#hero-final-content.play-anim .stack-line:nth-child(3) { animation: stack-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s forwards, merge-bottom-out 0.3s ease-in 1.1s forwards; }
#hero-final-content.play-anim .final-stacks { animation: final-title-in 0.3s ease 1.4s forwards; }
#hero-final-content.play-anim .final-three { color: var(--primary-red); animation: final-3-jump 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.5s forwards; }

.btn-yellow { background-color: #FFC107; color: var(--dark-text); border-color: #FFC107; font-weight: 800; font-size: 1.1rem; padding: 15px 40px; box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3); }
.btn-yellow:hover { background-color: #FFD54F; border-color: #FFD54F; box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5); transform: translateY(-3px); color: var(--dark-text); }
#view-menu-btn { opacity: 0; }
#hero-final-content.play-anim #view-menu-btn { animation: hero-fade-in 0.8s ease 1.8s forwards; }

/* ================== TASTY GALLERY SECTION ================== */
#tasty-gallery { padding: 120px 0; background-color: var(--light-bg); color: var(--dark-text); text-align: center; }
.tasty-gallery-top { margin-bottom: 60px; }
.tasty-title { font-size: 4.5rem; font-weight: 900; text-transform: uppercase; margin: 0; }
.photo-belt-wrapper { width: 100%; overflow: hidden; margin-top: 60px; }
@keyframes photo-belt-marquee { 0% { transform: translateX(0%); } 100% { transform: translateX(-50%); } }
.photo-belt { display: flex; gap: 0; width: fit-content; animation: photo-belt-marquee 30s linear infinite reverse; }
.photo-belt img { width: 300px; height: 400px; object-fit: cover; border-radius: 0; }

/* ================== SIGNATURE MENU SECTION ================== */
#signature-menu { background-color: var(--light-bg); color: var(--dark-text); overflow-x: clip; padding: 120px 0; }
@keyframes marquee-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.menu-marquee-bar { background-color: var(--dark-bg); color: var(--light-text); padding: 15px 0; overflow: hidden; white-space: nowrap; }
.menu-marquee-text { display: flex; width: fit-content; animation: marquee-left 22s linear infinite; font-weight: 300; text-transform: uppercase; }
.menu-marquee-text span { flex-shrink: 0; margin-right: 1rem; }
.menu-header { padding: 60px 20px 20px; }
.section-subtitle { max-width: 700px; margin: 0 auto 40px; line-height: 1.7; color: #555; }
.card-stack-wrapper { height: 400vh; position: relative; } 
.card-stack { height: 100vh; position: sticky; top: 10vh; }
.menu-stack-card { position: absolute; top: 50%; left: 50%; width: 90%; max-width: 950px; aspect-ratio: 1.8 / 1; border-radius: 0; will-change: transform; overflow: hidden; transform: translate(-50%, -50%); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35); }
.menu-stack-card.card-dark { background-color: var(--dark-bg); color: var(--light-text); }
.menu-stack-card.card-light { background-color: var(--nice-orange); color: var(--dark-text); }
@keyframes bg-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
.card-background-text { position: absolute; inset: 0; z-index: 1; }
.card-background-text .marquee-inner { position: absolute; top: 50%; transform: translateY(-50%); display: flex; width: fit-content; white-space: nowrap; font-size: 9rem; font-weight: 900; color: currentColor; opacity: 0.1; animation: bg-marquee 20s linear infinite; }

.card-content-wrapper { 
    width: 100%; 
    height: 100%; 
    display: grid; 
    grid-template-columns: 55% 45%;
    align-items: center; 
    position: relative; 
    z-index: 3; 
    padding: 6%; 
}
.card-price { width: 60px; height: 60px; border-radius: 50%; border: 2px solid currentColor; display: flex; justify-content: center; align-items: center; font-weight: 600; font-size: 1rem; margin-bottom: 20px; }
.card-title { font-size: 3rem; font-weight: 900; margin-bottom: 15px; }
.card-description { font-size: 1rem; line-height: 1.6; margin-bottom: 30px; }
.card-right { height: 100%; position: relative; }
.card-right::after { content: ''; position: absolute; inset: 0; z-index: 2; background-repeat: no-repeat; background-position: center; background-size: contain; }
.card-stack .menu-stack-card:nth-child(1) .card-right::after { background-image: url('../assets/images/classic.png'); }
.card-stack .menu-stack-card:nth-child(2) .card-right::after { background-image: url('../assets/images/smoky_burger.png'); }
.card-stack .menu-stack-card:nth-child(3) .card-right::after { background-image: url('../assets/images/sando_burger.png'); }

/* ================== ORDER SECTION ================== */
#order-section { position: relative; padding: 200px 0; min-height: 70vh; display: flex; align-items: center; justify-content: center; color: var(--light-text); overflow: hidden; }
.order-bg-image { position: absolute; inset: 0; z-index: -2; background-image: url('../assets/images/backround_order.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.order-overlay { position: absolute; inset: 0; background-color: rgba(0,0,0,0.6); z-index: -1; }
.order-content { position: relative; z-index: 1; }
.order-title { font-size: 4.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 20px; }
.order-subtitle { font-size: 1.1rem; max-width: 600px; margin: 0 auto 40px; line-height: 1.6; color: #ddd; }

/* ================== FOOTER ================== */
footer { 
    background-color: var(--dark-bg); 
    color: var(--light-text); 
    text-align: left; 
    position: relative; 
    z-index: 10; 
    padding: 80px 0 40px; 
    border-top: 1px solid #333;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -15%;
    width: 800px;
    height: 800px;
    background-image: url('../assets/images/logo_full_rings.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: -1;
    transform: rotate(15deg);
}
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; border-bottom: 1px solid #444; padding-bottom: 40px; }
.footer-title { font-size: 1.5rem; font-weight: 600; color: var(--nice-orange); margin-bottom: 15px; }
.social-links a { display: block; margin-bottom: 10px; color: #aaa; transition: color 0.3s ease; }
.social-links a:hover { color: var(--primary-red); }
.footer-bottom { 
    font-size: 0.9rem; 
    color: #888; 
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-credits {
    text-align: right;
}
.interfacedxb-credit {
    font-size: 0.9rem;
    color: #888;
    margin: 0 0 10px 0;
}
.interfacedxb-credit a {
    color: var(--primary-red);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.interfacedxb-credit a:hover {
    color: var(--primary-red);
}
.developer-credit {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}
.developer-credit a {
    display: inline-block;
    transition: opacity 0.3s ease;
    line-height: 1;
}
.developer-credit a:hover {
    opacity: 0.8;
}
.dev-icon {
    height: 14px;
    width: 14px;
    vertical-align: middle;
}

/* ================== CONTACT PAGE STYLES ============= */
#contact-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; background-image: url('../assets/images/contact_page.jpg'); background-size: cover; background-position: center; z-index: -1; }
.glass-wrapper { background: rgba(26, 26, 26, 0.65); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.1); padding: 40px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; max-width: 1000px; margin: 0 auto; }
.contact-title { font-size: 3rem; text-transform: uppercase; }
.contact-subtitle { line-height: 1.6; color: #ccc; margin-top: 10px; margin-bottom: 25px; }
.contact-info-block { margin-bottom: 20px; }
.contact-info-block h3 { text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 8px; }
.contact-info-block p { color: #ccc; font-size: 0.95rem; }
.contact-form .form-group { margin-bottom: 15px; }
.contact-form label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; text-transform: uppercase; color: #ccc; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 5px; color: var(--light-text); font-family: var(--font-primary); font-size: 1rem; transition: all 0.3s ease; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--light-text); background: rgba(0,0,0,0.5); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { width: 100%; padding: 15px; border-radius: 5px; background: transparent; border: 2px solid var(--light-text); color: var(--light-text); }
.contact-form .btn:hover { background: var(--light-text); color: var(--dark-text); transform: translateY(-2px); }

/* ================== NEW MENU PAGE STYLES ============== */
.menu-page-new main { padding-top: 0; }
.menu-page-new { background-color: var(--light-bg); color: var(--dark-text); }
#menu-hero-banner {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../assets/images/menu_banner.jpg');
    background-size: cover;
    background-position: center 35%;
    color: var(--light-text);
}
.menu-hero-overlay {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0, 0.5);
    z-index: 1;
}
#menu-hero-banner .container { position: relative; z-index: 2; }
.menu-hero-title { font-size: 5rem; font-weight: 900; text-transform: uppercase; }
.menu-hero-subtitle { font-size: 1.2rem; color: #ddd; margin-top: 10px; }

#menu-nav-sticky { position: sticky; top: calc(var(--header-height-scrolled) + 20px); background-color: rgba(251, 249, 240, 0.85); backdrop-filter: blur(10px); z-index: 900; border-bottom: 1px solid #ddd; transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.menu-nav-links { display: flex; justify-content: center; gap: 30px; list-style: none; padding: 15px 0; margin: 0; }
.menu-nav-link { padding: 10px 15px; color: #555; font-weight: 600; text-transform: uppercase; border: 2px solid transparent; border-radius: 50px; transition: all 0.3s ease; letter-spacing: 0.5px; }
.menu-nav-link:hover { color: var(--dark-text); border-color: #ccc; }
.menu-nav-link.active { color: var(--light-text); background-color: var(--primary-red); border-color: var(--primary-red); }

#full-menu-content { padding-top: 60px; padding-bottom: 100px; }
.menu-category { padding-bottom: 40px; }
.category-title { font-size: 2.8rem; font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 50px; padding-bottom: 20px; border-bottom: 2px dashed #ddd; }
.category-items { display: grid; grid-template-columns: 1fr; gap: 40px; }
.new-menu-item { display: grid; grid-template-columns: 120px 1fr auto; gap: 25px; align-items: center; }
.new-menu-item-img { width: 120px; height: 100px; object-fit: cover; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.new-menu-item-title { font-size: 1.5rem; font-weight: 700; color: var(--dark-text); margin-bottom: 5px; }
.new-menu-item-desc { color: #666; line-height: 1.5; font-size: 0.95rem; }
.new-menu-item-price { font-size: 1.4rem; font-weight: 700; color: var(--primary-red); justify-self: end; }
.new-menu-item-details { position: relative; overflow: hidden; }
.new-menu-item-title::after { content: "----------------------------------------------------------------------------------------------------"; display: block; white-space: nowrap; overflow: hidden; font-size: 12px; letter-spacing: 2px; color: #ccc; position: absolute; bottom: 0.3em; left: 0; width: 100%; z-index: -1; margin-left: 5px; }
.new-menu-item-details:has(:not(.new-menu-item-desc)) .new-menu-item-title::after { content: none; }

/* ================== REVIEW US MODAL ================== */
/* ================== REVIEW BUTTON CONTAINER ================== */
.review-button-container {
    text-align: center;
    margin-top: 60px;
}

/* CORRECTED: Menu button styles moved outside of @media */
/* ================== CUSTOM HEADER MENU BUTTON ================== */
header .nav-links .nav-menu-button a {
    border: 2px solid var(--light-bg);
    padding: 8px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
header .nav-links .nav-menu-button a:hover {
    background-color: var(--light-bg);
    color: var(--dark-text);
}
header .nav-links .nav-menu-button a::after {
    content: none;
}

/* ================== RESPONSIVE DESIGN ================== */
@media (max-width: 768px) { 
    html { 
        scroll-padding-top: 100px;
    }
    .header-right { display: none; } 
    #hamburger-btn { display: flex; }

    header.scrolled,
    .menu-page-new header,
    .contact-body header {
        top: 10px;
    }
    .menu-page-new main, .contact-body main {
        padding-top: calc(var(--header-height-scrolled) + 20px);
    }
    #menu-nav-sticky {
        top: calc(var(--header-height-scrolled) + 10px);
    }
    .hero-title-stacking { font-size: 3.5rem; }
    .hero-title-final { font-size: 4rem; }
    .final-three { font-size: 5rem; }
    .tasty-title { font-size: 3rem; }
    .photo-belt img { width: 250px; height: 320px; }
    .section-title { font-size: 2.5rem; }
    .card-title { font-size: 2.2rem; }
    .order-title { font-size: 3rem; }

    .card-stack-wrapper { 
        height: 350vh;
    }
    .card-stack {
        top: 15vh;
    }
    .menu-stack-card { 
        height: 550px;
        aspect-ratio: auto;
    }
    .card-content-wrapper { 
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 10%;
        height: 100%;
    }
    .card-price {
        order: 1;
        margin-bottom: 15px;
    }
    .card-right { 
        order: 2;
        display: block;
        height: 180px;
        width: 100%;
        margin-bottom: 20px;
    }
    .card-right::after {
        background-size: contain;
    }
    .card-title {
        order: 3;
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    .card-description {
        order: 4;
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    .menu-stack-card .btn {
        order: 5;
    }

    #menu-hero-new .menu-hero-title { font-size: 3rem; }
    .menu-nav-links { gap: 5px; flex-wrap: wrap; }
    .menu-nav-link { font-size: 0.7rem; padding: 8px 10px; }
    .new-menu-item-details { text-align: center; } 
    .new-menu-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .new-menu-item-img {
        width: 100%;
        height: 180px;
        margin-bottom: 15px;
    }
    .new-menu-item-price {
        justify-self: center;
        margin-top: 10px;
    }
    .new-menu-item-title::after {
       content: none;
    }

    .glass-wrapper { grid-template-columns: 1fr; padding: 30px; }
    .contact-title { font-size: 2.5rem; }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-credits {
        text-align: center;
        margin-top: 15px;
    }
}

/* ================== CUSTOMER REVIEWS SECTION ================== */
#customer-reviews {
    padding: 120px 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow: hidden;
    position: relative;
}
.review-header {
    margin-bottom: 60px;
}
.review-belt-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
@keyframes review-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.review-belt {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    width: fit-content;
    animation: review-scroll 45s linear infinite;
}
.review-card {
    width: 380px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 15px;
    padding: 25px 30px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.review-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.review-pfp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-pfp span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
}
.review-author h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: var(--light-text);
}
.review-stars {
    color: var(--nice-orange);
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}
.review-belt-wrapper:hover .review-belt {
    animation-play-state: paused;
}
/* ================== VIDEO VISIBILITY FAILSAFE ================== */
#hero .hero-video-bg video {
    display: none;
}