:root {
    --red: #9C2A40;
    --red-light: #B8334D;
    --red-dark: #7A2133;
    --gold: #D4A853;
    --gold-light: #F0D48A;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F3F3F3;
    --gray: #888;
    --dark: #2B2B2B;
    --text: #333;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: clip; max-width: 100vw; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

nav.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 60px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--red); }

.nav-links .btn-order {
    background: var(--red);
    color: white !important;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-links .btn-order:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156,42,64,0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
    z-index: 1010;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #7A2133 0%, var(--red) 40%, #B8334D 70%, #9C2A40 100%);
}

/* Decorative floating shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    top: -15%;
    right: -10%;
    animation: shapeFloat1 12s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: shapeFloat2 10s ease-in-out infinite;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation: shapeFloat3 8s ease-in-out infinite;
}

.hero-shape-4 {
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255,255,255,0.08);
    top: 15%;
    right: 15%;
    animation: shapeFloat2 14s ease-in-out infinite;
}

.hero-shape-5 {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255,255,255,0.1);
    bottom: 25%;
    right: 20%;
    animation: shapeFloat1 9s ease-in-out infinite 2s;
}

@keyframes shapeFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 30px) rotate(15deg); }
}

@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(25px, -20px) rotate(-10deg); }
}

@keyframes shapeFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, 15px) scale(1.15); }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 3rem;
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #1B7D3C, #22A04D);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(27,125,60,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    animation: fadeUp 0.7s ease forwards;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(27,125,60,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #F5C518;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(245,197,24,0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

/* Logo ring */
.hero-logo-ring {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.7s ease forwards 0.1s;
    opacity: 0;
}

.hero-logo-ring::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,0.25);
    animation: ringRotate 25s linear infinite;
}

.hero-logo-ring::after {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    animation: ringRotate 35s linear infinite reverse;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-logo-circle {
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.3));
    animation: logoFloat 5s ease-in-out infinite;
}

.hero-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero text */
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    animation: fadeUp 0.7s ease forwards 0.25s;
    opacity: 0;
}

.hero h1 span {
    color: #F5C518;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hero-desc {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
    animation: fadeUp 0.7s ease forwards 0.4s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.7s ease forwards 0.55s;
    opacity: 0;
}

.hero .btn-primary {
    background: #1B7D3C;
    color: white;
    padding: 1rem 2.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 2px solid #1B7D3C;
    box-shadow: 0 4px 20px rgba(27,125,60,0.35);
}

.hero .btn-primary:hover {
    background: #15662F;
    border-color: #15662F;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(27,125,60,0.45);
}

.hero .btn-secondary {
    color: white;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 1rem 2.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero .btn-secondary:hover {
    background: white;
    color: var(--red);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--red);
    color: white;
    box-shadow: 0 4px 15px rgba(156,42,64,0.25);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(156,42,64,0.35);
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--dark);
}

.btn-secondary:hover {
    background: #e8e8e8;
    transform: translateY(-3px);
}

/* ===== MARQUEE ===== */
.marquee-wrap {
    background: var(--red);
    padding: 0.9rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee {
    display: inline-flex;
    animation: scroll-left 30s linear infinite;
}

.marquee span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 3rem;
}

.marquee span::after {
    content: ' \2022';
    color: var(--gold-light);
    margin-left: 3rem;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about {
    padding: 6rem 2rem;
    background: var(--white);
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--red);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.about-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.8rem;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 0.98rem;
}

.about-text .hl {
    color: var(--red);
    font-weight: 600;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.about-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--red);
}

.about-stat-label {
    font-size: 0.82rem;
    color: var(--gray);
    margin-top: 0.2rem;
}

/* ===== MENU ===== */
.menu-section {
    padding: 6rem 2rem;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.section-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.section-header p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Menu category tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    border: 2px solid #ddd;
    background: white;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text);
}

.menu-tab:hover { border-color: var(--red); color: var(--red); }

.menu-tab.active {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

/* Menu grid */
.menu-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.menu-grid[data-category] { display: none; }
.menu-grid.active { display: grid; }

.menu-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.menu-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.08);
}

.menu-card-body {
    padding: 1.4rem 1.5rem;
}

.menu-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.menu-card-body p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

.menu-card-tag {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.3rem 0.8rem;
    background: rgba(156,42,64,0.08);
    color: var(--red);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* No-image cards */
.menu-card.no-img .menu-card-body {
    padding: 2.5rem 1.5rem;
    text-align: center;
    background: linear-gradient(145deg, var(--light-gray), white);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-card.no-img .menu-card-body h3 {
    font-size: 1.35rem;
}

/* Taco Tuesday */
.taco-tuesday {
    max-width: 1200px;
    margin: 3rem auto 0;
    background: linear-gradient(135deg, rgba(27,125,60,0.08) 0%, rgba(245,197,24,0.06) 100%);
    border: 2px dashed #1B7D3C;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    color: var(--dark);
}

.taco-tuesday h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red-dark);
}

.taco-tuesday p {
    color: var(--gray);
    font-size: 0.95rem;
}

.taco-badge {
    background: #1B7D3C;
    color: white;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.menu-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== FOOD GALLERY STRIP ===== */
.gallery-strip {
    display: flex;
    overflow: hidden;
    gap: 4px;
}

.gallery-strip img {
    height: 280px;
    object-fit: cover;
    flex: 1;
    min-width: 0;
    transition: flex 0.5s ease;
}

.gallery-strip img:hover {
    flex: 2;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 6rem 2rem;
    background: var(--off-white);
}

.reviews-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.8rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.review-stars {
    color: #F5C518;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-style: italic;
    font-weight: 500;
    color: #555;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.5rem;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.review-footer strong {
    display: block;
    font-size: 0.82rem;
    color: var(--dark);
}

.review-footer span {
    font-size: 0.7rem;
    color: var(--gray);
}

/* ===== CATERING ===== */
.catering {
    padding: 6rem 2rem;
    background: var(--dark);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(156,42,64,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212,168,83,0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(156,42,64,0.08) 0%, transparent 50%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.catering .section-label { color: var(--gold); }
.catering .section-header h2 { color: white; }
.catering .section-header p { color: rgba(255,255,255,0.65); }

.catering-grid {
    max-width: 1000px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.catering-card {
    padding: 2.5rem 1.8rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    transition: all 0.3s;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.catering-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: rgba(255,255,255,0.18);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.catering-icon {
    width: 56px;
    height: 56px;
    background: rgba(212,168,83,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.catering-icon svg { stroke: var(--gold-light); }

.catering-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.catering-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.btn-catering {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 2.4rem;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-catering:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* ===== CONTACT ===== */
.contact {
    padding: 6rem 2rem;
    background: var(--white);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info {
    padding: 2.5rem;
    background: var(--off-white);
    border-radius: 16px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    transition: background 0.3s;
}

.info-item:hover { background: white; }

.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(156,42,64,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.info-item p { font-size: 0.95rem; color: var(--dark); line-height: 1.5; }

.info-item a {
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.info-item a:hover { color: var(--red-dark); }

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
}

/* ===== SOCIAL ===== */
.social-bar {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--light-gray);
}

.social-bar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.social-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btns a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    background: white;
    color: var(--text);
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.social-btns a.fb:hover {
    background: #1877F2;
    color: white;
    border-color: #1877F2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24,119,242,0.3);
}

.social-btns a.fb:hover svg { fill: white; }

.social-btns a.ig:hover {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(221,42,123,0.3);
}

.social-btns a.ig:hover svg { stroke: white; }

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 2.5rem 2rem;
}

footer p { font-size: 0.85rem; }

footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }

    .hero { min-height: 100vh; min-height: 100svh; }
    .hero-content { padding: 7rem 1.5rem 4rem; max-width: 100%; }
    .hero h1 { font-size: 2.2rem; }
    .hero-logo-ring { width: 200px; height: 200px; margin-bottom: 2rem; }
    .hero-logo-circle { width: 200px; height: 200px; }
    .hero-badge { max-width: 100%; }
    .hero-desc { max-width: 100%; }
    .hero-shape-1 { width: 200px; height: 200px; }
    .hero-shape-2 { width: 150px; height: 150px; }

    .about { padding: 4rem 1.5rem; }
    .about-container { grid-template-columns: 1fr; gap: 2rem; }
    .about-image::before { display: none; }
    .about-text h2 { font-size: 2rem; }
    .about-stats { gap: 1.5rem; }

    .menu-section { padding: 4rem 1.5rem; }
    .section-header { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
    .menu-grid { grid-template-columns: 1fr; max-width: 100%; }

    .taco-tuesday { padding: 2rem; }

    .testimonials { padding: 4rem 1.5rem; }
    .reviews-grid { grid-template-columns: 1fr; max-width: 100%; }

    .gallery-strip img { height: 160px; }

    .catering { padding: 4rem 1.5rem; }
    .catering-grid { grid-template-columns: 1fr; max-width: 400px; }

    .contact { padding: 4rem 1.5rem; }
    .contact-container { grid-template-columns: 1fr; }
    .contact-map iframe { min-height: 300px; }

    .social-bar { padding: 3rem 1.5rem; }
    .social-btns { flex-direction: column; align-items: center; }
    .social-btns a { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
    .hero-content { padding: 6rem 1.2rem 3rem; }
    .hero h1 { font-size: 1.8rem; }
    .hero-logo-ring { width: 170px; height: 170px; margin-bottom: 1.5rem; }
    .hero-logo-circle { width: 170px; height: 170px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    .hero-shape-4, .hero-shape-5 { display: none; }

    .marquee span { padding: 0 1.5rem; font-size: 0.85rem; }
    .marquee span::after { margin-left: 1.5rem; }

    .about-text h2 { font-size: 1.6rem; }
    .about-stats { flex-direction: column; gap: 1rem; }

    .section-header h2 { font-size: 1.6rem; }

    .taco-tuesday h3 { font-size: 1.2rem; }

    .gallery-strip img { height: 120px; }

    .catering-card { padding: 2rem 1.4rem; }

    .contact-info { padding: 1.5rem; }
    .contact-info h2 { font-size: 1.6rem; }
    .contact-map iframe { min-height: 250px; }

    .social-bar h3 { font-size: 1.3rem; }
}
