:root {
    --primary-color: #f75d00;
    --primary-light: #ff7d29;
    --dark-color: #0c0c0c;
    --darker-color: #050505;
    --white: #ffffff;
    --bg-light: #fafafa;
    --text-color: #222;
    --text-muted: #666;
    --text-white: #ffffff;
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    --glass: rgba(255, 255, 255, 0.8);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Header Revamp */
header {
    background-color: transparent;
    /* Changed to transparent, will be darkened via JS */
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
    width: auto;
    transition: var(--transition);
}

header.scrolled .logo {
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 50%;
}

.nav-links ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    background: transparent;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-links ul li a.active {
    background: var(--primary-color);
    color: white;
}

.nav-links ul li a:hover:not(.active) {
    color: var(--primary-light);
}

.header-right-spacer {
    width: 0;
    /* Reduced to balance more naturally */
}


.menu-toggle {
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 2001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero v2 Revamp */
.hero-v2 {
    background-color: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero section photot.png');
    background-size: cover;
    background-position: center;
}

.hero-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, white, transparent);
}

.hero-content-v2 {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.welcome-text {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.main-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 10vw, 8.5rem);
    line-height: 0.9;
    margin-bottom: 2.5rem;
    letter-spacing: -3px;
    color: white;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: titleEntrance 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes titleEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.main-title .text-black {
    color: white;
}

.tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: white;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-accent {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(247, 93, 0, 0.1);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(247, 93, 0, 0.3);
}

.hero-btns {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
    border: none;
}

.btn-primary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(247, 93, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border: 2px solid white;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline:hover {
    background-color: white;
    color: black;
    transform: translateY(-5px);
}


/* About Section Refinement */
.about-orange-container {
    padding: 120px 0;
    background-color: white;
}

.about-rounded-card {
    background-color: var(--white);
    border-radius: 40px;
    padding: 0;
    color: var(--text-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.about-left {
    position: relative;
}

.about-left::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--primary-color);
    border-left: 5px solid var(--primary-color);
    z-index: 1;
}

.kiosk-3d {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.kiosk-3d:hover {
    transform: scale(1.02);
}

/* Specialties Section */
.specialties-section {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.section-header-center {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header-center h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.specialty-card {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.specialty-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.spec-img {
    height: 300px;
    overflow: hidden;
}

.spec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.specialty-card:hover .spec-img img {
    transform: scale(1.1);
}

.spec-info {
    padding: 2.5rem;
}

.spec-info h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.spec-info p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.spec-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.about-brand-white {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.about-brand-white span {
    color: var(--primary-color);
}

.about-long-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
    color: var(--text-muted);
    font-weight: 300;
}


/* Franchise Section Refinement */
.franchise-orange-section {
    background-color: var(--bg-light);
    padding: 160px 0;
    min-height: 100vh;
}

.section-title-alt {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    text-align: center;
    margin-bottom: 8rem;
    color: var(--dark-color);
    letter-spacing: -2px;
}

.franchise-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.franchise-box {
    background: white;
    border-radius: 40px;
    padding: 6rem;
    box-shadow: var(--card-shadow);
}

.box-head {
    text-align: left;
    margin-bottom: 4rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 3rem;
}

.box-head h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.box-head p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.box-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.box-img {
    position: relative;
}

.box-img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.box-menu h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.box-menu ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.box-menu ul li {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.box-menu ul li::before {
    content: '→';
    margin-right: 12px;
    color: var(--primary-color);
    font-weight: 800;
}


/* Menu Page v3 Refinement */
.menu-page-new {
    background: #0a0a0a;
    color: white;
    padding: 160px 0 100px 0;
}

.menu-header-v3 {
    text-align: center;
    margin-bottom: 8rem;
}

.menu-title-big {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: 15px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.menu-brand-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 5px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
}

.menu-section-v3 {
    margin-bottom: 10rem;
}

.menu-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.category-block {
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.cat-title-orange {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 3rem;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 3rem;
    width: auto;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(247, 93, 0, 0.3);
}

.price-header {
    display: grid;
    grid-template-columns: 1fr 120px 120px;
    gap: 20px;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.h-label {
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--primary-color);
    text-align: right;
    letter-spacing: 1px;
}

.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.m-item {
    display: grid;
    grid-template-columns: 1fr 120px 120px;
    gap: 20px;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.m-item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 1rem;
}

.menu-items-list.single-price .m-item {
    grid-template-columns: 1fr 120px;
}

.item-n {
    font-size: 1.1rem;
    font-weight: 300;
    color: #eee;
}

.p-val,
.p-val-single {
    text-align: right;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.menu-img-circle-v3 {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    margin: 0 auto;
}

.menu-img-circle-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-img-circle-v3:hover img {
    transform: scale(1.1);
}

.menu-divider-v3 {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 8rem 0;
}

.sub-cat-v3 {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
}


/* Contact Page Refinement */
.contact-page-content {
    background-color: #fcfcfc;
}

.contact-hero {
    padding: 100px 0 60px 0;
    text-align: center;
}

.contact-grid-v2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    padding: 60px 0;
    align-items: start;
}

.glass-form {
    background: white;
    padding: 4rem;
    border-radius: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.glass-form h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-transform: lowercase;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1.4rem;
    border: 2px solid #f8f8f8;
    background: #fafafa;
    border-radius: 20px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    outline: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 10px 20px rgba(247, 93, 0, 0.05);
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 1.4rem 3rem;
    border: none;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: black;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.info-card-v2 {
    background: white;
    padding: 2.2rem;
    border-radius: 30px;
    display: flex;
    gap: 1.8rem;
    align-items: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.info-card-v2:hover {
    transform: translateX(15px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(247, 93, 0, 0.05);
}

.info-card-v2 i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 70px;
    height: 70px;
    background: #fff5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-txt h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
}

.info-txt p {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

.social-connect {
    margin-top: 4rem;
    padding-left: 1rem;
}

.social-connect h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-transform: lowercase;
}

.social-btns {
    display: flex;
    gap: 1.2rem;
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-btn.whatsapp-v2 {
    background: #25D366;
    color: white;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn.facebook {
    background: #1877F2;
    color: white;
}

.social-btn:hover {
    transform: translateY(-8px) rotate(15deg);
}

.map-section {
    padding: 60px 0 100px 0;
}

.map-container {
    height: 500px;
    border-radius: 60px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
    text-align: center;
    color: #888;
}

.map-placeholder i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.map-placeholder p {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
}

/* Footer Refinement */
/* Footer Refinement */
.footer-v2 {
    background-color: var(--darker-color);
    color: white;
    padding: 100px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.footer-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(247, 93, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
}

.footer-brand-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.2rem;
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.footer-brand-side h2 span {
    color: var(--primary-color);
}

.footer-brand-side p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
}

.footer-socials a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(247, 93, 0, 0.3);
}

.footer-links-col h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links-col ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links-col ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-info-side p {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
}

.footer-info-side p strong {
    color: white;
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.footer-bottom-line {
    border-top: none;
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright-text {
    color: #555;
    font-size: 0.85rem;
}

.bottom-text {
    font-size: 0.75rem;
    color: #444;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.bottom-text span {
    color: #666;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(247, 93, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-10px);
    background: white;
    color: var(--primary-color);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .container {
        padding: 0 2rem;
    }

    .about-grid,
    .box-body,
    .menu-row,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .footer-brand-text {
        font-size: 3rem;
    }

    .box-menu ul {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: black;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2500;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links ul li a {
        font-size: 2rem;
    }

    .header-right-spacer {
        display: none;
    }
}

/* Badges */
.badge-best {
    background: #FFD700;
    color: #000;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 10px;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.spicy-icon {
    color: #ff4d4d;
    margin-left: 6px;
    font-size: 0.8rem;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* =====================
   Menu Flyer Gallery
   ===================== */
.menu-flyer-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    padding: 4rem 1.5rem 6rem;
    background-color: #0a0a0a;
}

.menu-flyer-item {
    width: 100%;
    max-width: 860px;
}

.menu-flyer-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.menu-flyer-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
}

.menu-flyer-item.reveal {
    opacity: 0;
    transform: translateY(50px);
}

.menu-flyer-item.reveal.active {
    opacity: 1;
    transform: translateY(0);
}