/* =========================================================
   INDIAN SIZZLER KITCHEN
   Main Stylesheet
   ========================================================= */

/* ---------- CSS VARIABLES ---------- */

:root {
    --black: #090806;
    --dark: #15100b;
    --dark-brown: #24160d;
    --brown: #4a2816;

    --gold: #d9a928;
    --gold-light: #f5d675;
    --gold-dark: #a87308;

    --red: #991f1f;
    --red-dark: #681010;

    --cream: #fff8e9;
    --cream-dark: #f4ead5;
    --white: #ffffff;

    --text-dark: #2c241d;
    --text-light: #eee6da;
    --muted: #756b60;

    --border-light: rgba(255, 255, 255, 0.15);
    --border-gold: rgba(217, 169, 40, 0.4);

    --shadow-small: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-medium: 0 18px 45px rgba(0, 0, 0, 0.18);
    --shadow-dark: 0 22px 55px rgba(0, 0, 0, 0.35);

    --font-heading: "Cinzel", serif;
    --font-body: "Poppins", sans-serif;

    --transition: 0.3s ease;
}

/* ---------- RESET ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: none;
    cursor: pointer;
}

address {
    font-style: normal;
}

/* ---------- GENERAL LAYOUT ---------- */

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section-padding {
    padding: 100px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading span,
.section-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-heading h2,
.about-text h2,
.order-content h2 {
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.25;
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 78px;
    height: 3px;
    margin: 18px auto;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
}

.section-heading p {
    color: var(--muted);
    font-size: 1rem;
}

/* =========================================================
   MENU SECTION HEADING - BRIGHT VERSION
========================================================= */

.live-menu-section .section-heading {
    text-align: center;
    margin-bottom: 42px;
}


/* FRESH FROM OUR KITCHEN */

.live-menu-section .section-heading > span {
    display: block;

    color: #ff3b30 !important;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 4px;
    text-transform: uppercase;

    opacity: 1 !important;

    text-shadow:
        0 0 10px rgba(255, 59, 48, 0.25);
}


/* EXPLORE OUR MENU */

.live-menu-section .section-heading h2 {
    margin: 14px 0 14px;

    color: #ffffff !important;

    font-size: clamp(38px, 4vw, 54px);
    font-weight: 700;

    line-height: 1.1;

    opacity: 1 !important;

    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.45);
}


/* GOLD DECORATIVE LINE */

.live-menu-section .section-heading h2::after {
    content: "";

    display: block;

    width: 72px;
    height: 3px;

    margin: 20px auto 0;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        transparent,
        #f4c93d,
        transparent
    );

    box-shadow:
        0 0 10px rgba(244, 201, 61, 0.35);
}


/* DESCRIPTION */

.live-menu-section .section-heading p {
    margin: 20px auto 0;

    max-width: 720px;

    color: #e5ddd4 !important;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.7;

    opacity: 1 !important;
}

.light-heading span {
    color: var(--gold-light);
}

.light-heading h2,
.light-heading p {
    color: var(--white);
}

/* ---------- BUTTONS ---------- */

.gold-btn,
.outline-btn,
.btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 28px;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.gold-btn,
.btn-order {
    color: var(--dark);
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );
    border: 1px solid var(--gold-light);
    box-shadow: 0 10px 25px rgba(217, 169, 40, 0.25);
}

.gold-btn:hover,
.btn-order:hover {
    color: var(--white);
    background: linear-gradient(
        135deg,
        var(--red),
        var(--red-dark)
    );
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(153, 31, 31, 0.28);
}

.outline-btn {
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.outline-btn:hover {
    color: var(--dark);
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ---------- HEADER ---------- */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 100px;
    background: rgba(9, 8, 6, 0.94);
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(14px);
    transition:
        height var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.site-header.scrolled {
    height: 100px;
    background: rgba(9, 8, 6, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}


header {
    height: 90px;
}

header .container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
}

 ==========================
   LOGO
========================== */

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-img {
    height: 170px;          /* Adjust between 65–80px if needed */
    width: auto;           /* Maintain aspect ratio */
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* ===========================
   MOBILE LOGO
=========================== */

@media (max-width:768px){

    header,
    .site-header{

        height:90px;
        padding:0 15px;

    }

    .header-container{

        height:90px;
        display:flex;
        align-items:center;
        justify-content:space-between;

    }

}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    position: relative;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: color var(--transition);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-light);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.btn-order {
    min-height: 44px;
    padding: 10px 20px;
    font-size: 0.78rem;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    color: var(--gold-light);
    background: transparent;
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    font-size: 1.3rem;
}

/* ---------- HERO ---------- */

.hero{
    position:relative;
    min-height:100vh;
    display:grid;
    place-items:center;
    padding:135px 20px 80px;
    overflow:hidden;
    text-align:center;
    color:#fff;

    background:none;
}

.hero::before{

    content:"";

    position:absolute;
    inset:0;

    background:url("../images/hero.jpg") center center/cover no-repeat;

    filter:brightness(1.45) contrast(1.08) saturate(1.20);

    transform:scale(1.02);

    z-index:0;
}
.hero .overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.12);

    z-index:1;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: min(880px, 100%);
    animation: heroFade 1s ease both;
}
/*
.hero-eyebrow {
    margin-bottom: 15px;
   /* color: var(--gold-light); */
    color: white;	
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}
*/

.hero-eyebrow{

    color:#FFD86B;

    font-family:"Cinzel", serif;
    font-style: italic;

    font-size:18px;

    font-weight:700;

    letter-spacing:8px;

    text-transform:uppercase;

    text-shadow:
        0 2px 10px rgba(0,0,0,.55);

}.hero-eyebrow::before,
.hero-eyebrow::after{

    content:"";

    width:45px;

    height:2px;

    background:#d4af37;

}

.hero h1 {
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 7vw, 5.7rem);
    line-height: 1.08;
    text-shadow: 0 5px 22px rgba(0, 0, 0, 0.7);
}

.hero-description {
    max-width: 720px;
    margin: 24px auto 0;
    color: #f0e8df;
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 34px;
}

/* ---------- CATEGORIES ---------- */

.categories {
    position: relative;
    background:
        radial-gradient(
            circle at top left,
            rgba(217, 169, 40, 0.08),
            transparent 32%
        ),
        var(--cream);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    position: relative;
    padding: 38px 30px;
    overflow: hidden;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(168, 115, 8, 0.16);
    border-radius: 8px;
    box-shadow: var(--shadow-small);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--red),
        var(--gold),
        var(--red)
    );
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-medium);
}

.card-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    color: var(--gold);
    background: var(--dark);
    border-radius: 50%;
    font-size: 1.85rem;
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.16);
}

.card h3 {
    margin-bottom: 12px;
    color: var(--red-dark);
    font-family: var(--font-heading);
    font-size: 1.35rem;
}

.card p {
    min-height: 82px;
    color: var(--muted);
    font-size: 0.92rem;
}

.card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--gold-dark);
    font-size: 0.83rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card a i {
    transition: transform var(--transition);
}

.card a:hover i {
    transform: translateX(5px);
}

/* ---------- ABOUT ---------- */

.about {
    background: var(--cream-dark);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -18px;
    left: -18px;
    width: 62%;
    height: 72%;
    border: 2px solid var(--gold);
}

.about-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 540px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: var(--shadow-medium);
}

.experience-badge {
    position: absolute;
    z-index: 2;
    right: -28px;
    bottom: 30px;
    width: 175px;
    padding: 22px;
    text-align: center;
    color: var(--white);
    background: var(--red-dark);
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-dark);
}

.experience-badge strong {
    display: block;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.experience-badge span {
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-text h2 {
    margin-bottom: 22px;
}

.about-text p {
    margin-bottom: 18px;
    color: var(--muted);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 30px 0;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.65);
    border-left: 3px solid var(--gold);
}

.about-features i {
    color: var(--red);
    font-size: 1.15rem;
}

.about-features span {
    font-size: 0.88rem;
    font-weight: 500;
}

/* ---------- SPECIALS ---------- */

.specials {
    background:
        linear-gradient(
            rgba(9, 8, 6, 0.93),
            rgba(9, 8, 6, 0.95)
        ),
        url("../images/pattern.jpg")
        center / cover fixed;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.food-card {
    overflow: hidden;
    background: var(--white);
    border-radius: 7px;
    box-shadow: var(--shadow-dark);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.food-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.48);
}

.food-image {
    height: 220px;
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.food-card:hover .food-image img {
    transform: scale(1.08);
}

.food-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 210px;
    padding: 24px;
}

.food-card h3 {
    margin-bottom: 10px;
    color: var(--red-dark);
    font-family: var(--font-heading);
    font-size: 1.08rem;
}

.food-card p {
    color: var(--muted);
    font-size: 0.86rem;
}

.food-price {
    display: inline-block;
    align-self: flex-start;
    margin-top: 18px;
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 700;
}

.menu-button-wrapper {
    margin-top: 48px;
    text-align: center;
}

/* ---------- GALLERY ---------- */

.gallery {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: var(--shadow-small);
}

.gallery-item::after {
    content: "\f00e";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(91, 17, 17, 0.7);
    font-family: "Font Awesome 6 Free";
    font-size: 1.8rem;
    font-weight: 900;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* ---------- ORDER SECTION ---------- */

/*
.order-section{
    background:
        linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
        url("../images/order-background.jpg");
    background-size: fill;
    background-position: center;
}
*/

.order-section {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;

    background-image:
       linear-gradient(
            rgba(0, 0, 0, 0.18),
            rgba(0, 0, 0, 0.25)
        ),
        url("../images/pattern.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Remove the second dark overlay */
.order-section .overlay {
    display: none;
}

.order-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}
.menu-order-section {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.order-content > span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.order-content h2 {
    color: var(--white);
}

.order-content p {
    max-width: 650px;
    margin: 20px auto 0;
    color: #e9dfd5;
}

.order-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 32px;
}

/* ---------- CONTACT ---------- */

.contact {
    background: var(--cream-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 35px;
}

.contact-details {
    display: grid;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 5px;
    box-shadow: var(--shadow-small);
}

.contact-card > i {
    display: grid;
    flex: 0 0 48px;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--gold-light);
    background: var(--red-dark);
    border-radius: 50%;
}

.contact-card h3 {
    margin-bottom: 5px;
    color: var(--red-dark);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.contact-card p,
.contact-card address,
.contact-card a {
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-card a:hover {
    color: var(--red);
}

.map-wrapper {
    min-height: 100%;
    overflow: hidden;
    border: 5px solid var(--white);
    border-left:2px solid #d4af37;
    border-right:2px solid #d4af37;
    border-top:2px solid #d4af37;
    border-bottom:2px solid #d4af37;		
    border-radius: 5px;
    box-shadow: var(--shadow-medium);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
}

/* ---------- FOOTER ---------- */

.site-footer {
    color: var(--text-light);
    background: var(--black);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr;
    gap: 60px;
    padding-top: 70px;
    padding-bottom: 55px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-about p {
    max-width: 420px;
    color: #bdb3a8;
    font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 20px;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.footer-links li + li {
    margin-top: 9px;
}

.footer-links a,
.footer-contact p,
.footer-contact a {
    color: #bdb3a8;
    font-size: 0.88rem;
}

.footer-links a {
    transition:
        color var(--transition),
        padding-left var(--transition);
}

.footer-links a:hover {
    padding-left: 5px;
    color: var(--gold-light);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact i {
    margin-top: 5px;
    color: var(--gold);
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    color: #91887e;
    font-size: 0.78rem;
}

/* ---------- FLOATING CALL BUTTON ---------- */

.floating-call {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: none;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--white);
    background: var(--red);
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    animation: pulseCall 2s infinite;
}

/* ---------- SCROLL ANIMATION CLASSES ---------- */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- KEYFRAMES ---------- */

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseCall {
    0% {
        box-shadow:
            0 0 0 0 rgba(153, 31, 31, 0.55),
            0 10px 28px rgba(0, 0, 0, 0.35);
    }

    70% {
        box-shadow:
            0 0 0 15px rgba(153, 31, 31, 0),
            0 10px 28px rgba(0, 0, 0, 0.35);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(153, 31, 31, 0),
            0 10px 28px rgba(0, 0, 0, 0.35);
    }
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 1050px) {
    .main-nav ul {
        gap: 20px;
    }

    .food-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .food-image {
        height: 260px;
    }

    .about-container {
        gap: 45px;
    }

    .experience-badge {
        right: -15px;
    }
}

@media (max-width: 900px) {
    .section-padding {
        padding: 80px 0;
    }

    .desktop-order {
        display: none;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
        margin-left: auto;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        right: -100%;
        width: min(330px, 88%);
        height: calc(100vh - 72px);
        padding: 35px 28px;
        background: rgba(9, 8, 6, 0.99);
        border-left: 1px solid var(--border-light);
        box-shadow: -15px 20px 40px rgba(0, 0, 0, 0.35);
        transition: right 0.35s ease;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid var(--border-light);
    }

    .main-nav a {
        display: block;
        padding: 18px 4px;
        font-size: 1rem;
    }

    .main-nav a::after {
        display: none;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .card p {
        min-height: auto;
    }

    .about-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 650px;
        margin: 0 auto;
    }

    .about-image img {
        min-height: 480px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-wrapper iframe {
        min-height: 400px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-about {
        grid-column: span 2;
    }

    .floating-call {
        display: grid;
    }
}

@media (max-width: 650px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .section-padding {
        padding: 68px 0;
    }

    .site-header {
        height: 72px;
    }

    .hero {
        min-height: 92vh;
        padding-top: 115px;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 13vw, 3.6rem);
    }

    .hero-description {
        font-size: 0.94rem;
    }

    .hero-buttons,
    .order-buttons {
        flex-direction: column;
        align-items: stretch;
        width: min(100%, 330px);
        margin-left: auto;
        margin-right: auto;
    }

    .gold-btn,
    .outline-btn {
        width: 100%;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .about-text h2,
    .order-content h2 {
        font-size: 2rem;
    }

    .about-container {
        gap: 45px;
    }

    .about-image::before {
        top: -10px;
        left: -8px;
    }

    .about-image img {
        min-height: 380px;
    }

    .experience-badge {
        right: 10px;
        bottom: 15px;
        width: 145px;
        padding: 15px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .food-grid {
        grid-template-columns: 1fr;
    }

    .food-image {
        height: 260px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-card {
        padding: 18px;
    }

    .contact-card > i {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 55px;
    }

    .footer-about {
        grid-column: span 1;
    }

    .floating-call {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 420px) {
    .logo-main {
        font-size: 0.85rem;
    }

    .logo-accent {
        font-size: 1.25rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .card {
        padding: 32px 22px;
    }

    .food-card-content {
        padding: 20px;
    }

    .contact-card {
        gap: 13px;
    }
}

/* ---------- REDUCED MOTION ---------- */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------- GALLERY LIGHTBOX ---------- */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: min(1000px, 92vw);
    max-height: 86vh;
    object-fit: contain;
    border: 3px solid var(--gold);
    border-radius: 5px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 25px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--white);
    background: var(--red);
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    font-size: 1.35rem;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.lightbox-close:hover {
    background: var(--gold-dark);
    transform: rotate(90deg);
}

.gallery-item img {
    cursor: pointer;
}

/* =========================================================
   FULL MENU PAGE
   ========================================================= */

.menu-page-body {
    background: var(--cream);
}

/* ---------- MENU HERO ---------- */

.menu-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 135px 20px 80px;
    text-align: center;
    color: var(--white);

    background-image: url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background:
        url("../images/gallery-5.jpg")
        center / cover no-repeat;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:url("../images/hero.jpg") center center/cover no-repeat;

    filter:brightness(1.25) saturate(1.15);

    z-index:-2;
}


.menu-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        rgba(0,0,0,.08);
	z-index:-1;
}

.menu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.menu-hero-label {
    margin-bottom: 12px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.menu-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.1;
}

.menu-hero-content > p:not(.menu-hero-label) {
    max-width: 700px;
    margin: 22px auto 0;
    color: #eee4d9;
}

.menu-hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

/* ---------- MENU NAVIGATION ---------- */

.menu-navigation {
    position: relative;
    z-index: 10;
    margin-top: -32px;
}

.menu-navigation-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    background: var(--dark);
    border: 1px solid var(--gold);
    border-radius: 6px;
    box-shadow: var(--shadow-dark);
}

.menu-navigation-inner a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 64px;
    padding: 15px;
    color: var(--white);
    border-right: 1px solid var(--border-gold);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    transition:
        color var(--transition),
        background var(--transition);
}

.menu-navigation-inner a:last-child {
    border-right: 0;
}

.menu-navigation-inner i {
    color: var(--gold);
}

.menu-navigation-inner a:hover {
    color: var(--dark);
    background: var(--gold-light);
}

.menu-navigation-inner a:hover i {
    color: var(--red-dark);
}

/* ---------- ALLERGY NOTICE ---------- */

.menu-allergy-section {
    padding: 85px 0 35px;
}

.menu-allergy-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 28px 32px;
    color: var(--text-dark);
    background: #fff4d5;
    border: 1px solid #ddbd68;
    border-left: 6px solid var(--red);
    border-radius: 6px;
    box-shadow: var(--shadow-small);
}

.allergy-icon {
    display: grid;
    flex: 0 0 58px;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--gold-light);
    background: var(--red-dark);
    border-radius: 50%;
    font-size: 1.45rem;
}

.menu-allergy-card h2 {
    margin-bottom: 8px;
    color: var(--red-dark);
    font-family: var(--font-heading);
    font-size: 1.45rem;
}

.menu-allergy-card p {
    color: #5d5043;
    font-size: 0.92rem;
}

.menu-allergy-card p + p {
    margin-top: 5px;
    font-weight: 500;
}

/* ---------- FULL MENU IMAGE ---------- */

.full-menu-section {
    padding: 70px 0 105px;
    background:
        radial-gradient(
            circle at top left,
            rgba(217, 169, 40, 0.1),
            transparent 35%
        ),
        var(--cream);
}

.full-menu-wrapper {
    max-width: 1050px;
    margin: 0 auto;
    padding: 12px;
    background: var(--dark);
    border: 3px solid var(--gold);
    border-radius: 8px;
    box-shadow: var(--shadow-dark);
}

.full-menu-image-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.full-menu-image {
    width: 100%;
    height: auto;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.menu-image-hover {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    color: var(--white);
    background: rgba(72, 12, 8, 0.72);
    opacity: 0;
    transition: opacity var(--transition);
}

.menu-image-hover i {
    font-size: 2.3rem;
}

.menu-image-hover span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.full-menu-image-link:hover .menu-image-hover {
    opacity: 1;
}

.full-menu-image-link:hover .full-menu-image {
    transform: scale(1.015);
}

.menu-download-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.menu-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 26px;
    color: var(--red-dark);
    background: transparent;
    border: 1px solid var(--red-dark);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.menu-secondary-btn:hover {
    color: var(--white);
    background: var(--red-dark);
    transform: translateY(-3px);
}

/* ---------- CATEGORY SUMMARY ---------- */

.menu-category-summary {
    background:
        linear-gradient(
            rgba(9, 8, 6, 0.92),
            rgba(9, 8, 6, 0.95)
        ),
        url("../images/pattern.jpg")
        center / cover fixed;
}

.menu-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.menu-category-card {
    padding: 30px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(217, 169, 40, 0.45);
    border-radius: 6px;
    box-shadow: var(--shadow-dark);
    transition:
        transform var(--transition),
        border-color var(--transition);
}

.menu-category-card:hover {
    transform: translateY(-7px);
    border-color: var(--gold);
}

.menu-category-card > i {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 19px;
    color: var(--gold-light);
    background: var(--red-dark);
    border-radius: 50%;
    font-size: 1.45rem;
}

.menu-category-card h3 {
    margin-bottom: 10px;
    color: var(--red-dark);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.menu-category-card p {
    color: var(--muted);
    font-size: 0.84rem;
}
/* =========================================================
   MENU.HTML LAYOUT FIX
   Add this block at the VERY END of css/style.css
   ========================================================= */

.menu-page-body main {
    display: block;
    width: 100%;
}

.menu-page-body main > section {
    width: 100%;
}

/* Header logo */

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-img {
    display: block;
    width: auto;
    height: 90px;
    max-width: 290px;
    max-height: 90px;
    object-fit: contain;
    opacity: 1;
    filter: none;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.03);
}

.footer-logo-img {
    display: block;
    width: auto;
    height: 72px;
    max-width: 300px;
    object-fit: contain;
}

/* Order section — full width and centered */

.menu-order-section {
    position: relative;
    width: 100%;
    min-height: 420px;
    margin: 0;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    background:
        radial-gradient(
            circle at 18% 50%,
            rgba(153, 31, 31, 0.34),
            transparent 43%
        ),
        radial-gradient(
            circle at 84% 28%,
            rgba(217, 169, 40, 0.10),
            transparent 28%
        ),
        linear-gradient(
            110deg,
            #310907 0%,
            #1d0705 52%,
            #090806 100%
        );
}

.menu-order-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(255, 255, 255, 0.025),
            transparent 26%
        ),
        radial-gradient(
            circle at 88% 82%,
            rgba(217, 169, 40, 0.05),
            transparent 30%
        );
}

/* Old overlay caused layout and darkness problems */
.menu-order-overlay {
    display: none !important;
}

.menu-order-content {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    max-width: 760px;
    margin: 0 auto;
}

.menu-order-content > span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.menu-order-content h2 {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.15;
}

.menu-order-content p {
    max-width: 650px;
    margin: 20px auto 0;
    color: #eee3d9;
    font-size: 1rem;
}

.menu-order-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

/* Prevent accidental two-column layout */

.menu-category-summary,
.menu-order-section,
.menu-location-section {
    grid-column: 1 / -1;
    float: none;
    clear: both;
}

/* Responsive */

@media (max-width: 900px) {
    .logo-img {
        height: 54px;
        max-width: 235px;
    }
}

@media (max-width: 650px) {
    .logo-img {
        height: 46px;
        max-width: 195px;
    }

    .menu-order-section {
        min-height: 380px;
        padding: 65px 18px;
    }

    .menu-order-buttons {
        flex-direction: column;
        width: min(100%, 330px);
        margin-left: auto;
        margin-right: auto;
    }

    .menu-order-buttons a {
        width: 100%;
    }
}

/*==============================
HEADER SOCIAL ICONS
===============================*/

.header-social{

    display:flex;

    align-items:center;

    gap:12px;

    margin-left:30px;

    margin-right:25px;

}

.header-social a{

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid rgba(255,255,255,.15);

    border-radius:50%;

    color:#ffffff;

    transition:.3s;

    font-size:18px;

}

.header-social a:hover{

    background:#d4af37;

    color:#111;

    border-color:#d4af37;

    transform:translateY(-3px);

}

@media (max-width:900px){

.header-social{

    display:none;

}

}

/*==========================================
      FLOATING SOCIAL BAR
==========================================*/

.floating-social{

    position:fixed;

    right:25px;

    top:50%;

    transform:translateY(-50%);

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:9999;

}

.floating-social a{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    text-decoration:none;

    color:#fff;

    font-size:22px;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    transition:.35s ease;

}

/* Facebook */

.facebook{

    background:#1877F2;

}

/* Instagram */

.instagram{

    background:linear-gradient(
        45deg,
        #f58529,
        #dd2a7b,
        #8134af,
        #515bd4
    );

}

/* Yelp */

.yelp{

    background:#d32323;

}

.floating-social a:hover{

    transform:translateX(-8px) scale(1.12);

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

@media (max-width:768px){

.floating-social{

    right:12px;

}

.floating-social a{

    width:44px;

    height:44px;

    font-size:18px;

}

}

/* ==========================================
   FINAL MOBILE HEADER + LOGO FIX
   KEEP THIS AT VERY END OF style.css
========================================== */

@media (max-width: 900px) {

    .site-header,
    header {
        height: 100px !important;
        padding: 0 10px;
    }

    .header-container,
    header .container {
        height: 100px !important;
        min-height: 100px;
        display: flex;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        height: 100%;
        overflow: visible;
    }

    .logo-img {
        height: 98px !important;
        width: auto !important;
        max-width: 280px !important;
        max-height: none !important;
        object-fit: contain;
        display: block;
    }
}

@media (max-width: 650px) {

    .site-header,
    header {
        height: 90px !important;
    }

    .header-container,
    header .container {
        height: 90px !important;
        min-height: 90px;
    }

    .logo-img {
        height: 80px !important;
        width: auto !important;
        max-width: 250px !important;
        max-height: none !important;
    }
}

@media (max-width: 420px) {

    .logo-img {
        height: 72px !important;
        max-width: 220px !important;
    }
}

/* ==========================================
   RESERVATION SECTION
========================================== */

.reservation-section{

    padding:100px 0;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(153,31,31,.28),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #260604,
            #120706 55%,
            #090806
        );

}

.reservation-wrapper{

    max-width:1000px;

    margin:0 auto;

    padding:45px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(217,169,40,.28);

    border-radius:20px;

    backdrop-filter:blur(10px);

    box-shadow:
        0 25px 70px rgba(0,0,0,.30);

}

.reservation-form{

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:24px;

}

.form-group{

    display:flex;

    flex-direction:column;

    gap:8px;

}

.form-group label{

    color:#f5d675;

    font-size:.82rem;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    padding:15px 16px;

    color:#fff;

    background:rgba(0,0,0,.35);

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius:7px;

    outline:none;

    transition:.3s;

}

.form-group textarea{

    resize:vertical;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#d9a928;

    box-shadow:
        0 0 0 3px
        rgba(217,169,40,.12);

}

.form-group input::placeholder,
.form-group textarea::placeholder{

    color:#b8aea4;

}

.form-group select option{

    color:#111;

}

.form-full{

    grid-column:1 / -1;

}

.reservation-btn{

    width:100%;

    min-height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 28px;

    color:#15100b;

    background:
        linear-gradient(
            135deg,
            #f5d675,
            #d9a928
        );

    border:
        1px solid #f5d675;

    border-radius:6px;

    font-weight:700;

    letter-spacing:1.5px;

    text-transform:uppercase;

    cursor:pointer;

    transition:.3s;

}

.reservation-btn:hover{

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #991f1f,
            #681010
        );

    border-color:#991f1f;

    transform:translateY(-3px);

}

.reservation-message{

    display:none;

    margin-top:5px;

    color:#f5d675;

    text-align:center;

    font-weight:500;

}


/* MOBILE */

@media(max-width:768px){

    .reservation-section{
        padding:70px 0;
    }

    .reservation-wrapper{
        padding:28px 20px;
    }

    .reservation-form{
        grid-template-columns:1fr;
    }

    .form-full{
        grid-column:1;
    }

}
/* =========================================================
   FINAL HEADER / LOGO SAFETY FIX
   ========================================================= */

.site-header {
    height: 130;
}

.site-header .container,
.site-header .header-container {
    height: 130px;
}

.logo {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 200px;
    width: auto;
    overflow: hidden;
}

.logo-img {
    display: block !important;
    width: auto !important;
    height: 130px !important;
    max-height: 130px !important;
    max-width: 290px !important;
    object-fit: contain;
}

/* Menu controls must remain above normal page elements */
.menu-controls,
.menu-search-wrap,
.category-filters {
    position: relative;
    z-index: 20;
}

/* Category buttons are real buttons, not navigation links */
.category-btn {
    position: relative;
    z-index: 21;
    cursor: pointer;
}
/* =========================================================
   MENU DIETARY INDICATORS
   Icon + Text Only — No Background
   ========================================================= */

/* Base indicator */
.menu-indicator,
.menu-badge,
.dietary-badge,
.veg-badge,
.spicy-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;

    background: transparent !important;
    background-image: none !important;

    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    padding: 0 !important;
    margin: 0 8px 0 0;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    text-transform: uppercase;
}

/* VEG */
.veg-badge,
.menu-indicator.veg,
.menu-badge.veg,
.dietary-badge.veg {
    color: #38d875 !important;
}

/* SPICY */
.spicy-badge,
.menu-indicator.spicy,
.menu-badge.spicy,
.dietary-badge.spicy {
    color: #ff5252 !important;
}

/* Icon/image inside indicator */
.menu-indicator img,
.menu-badge img,
.dietary-badge img,
.veg-badge img,
.spicy-badge img {
    width: 15px !important;
    height: 15px !important;
    object-fit: contain;
    display: inline-block;
}

/* Font Awesome / other icon */
.menu-indicator i,
.menu-badge i,
.dietary-badge i,
.veg-badge i,
.spicy-badge i {
    font-size: 12px;
    background: transparent !important;
}
/* =========================================================
   BRIGHT INDICATOR TEXT
   ========================================================= */

/* VEG */
.veg-badge,
.veg-badge span,
.menu-indicator.veg,
.menu-indicator.veg span,
.dietary-badge.veg,
.dietary-badge.veg span {
    color: #39e66f !important;
    opacity: 1 !important;
    font-weight: 700 !important;
}

/* SPICY */
.spicy-badge,
.spicy-badge span,
.menu-indicator.spicy,
.menu-indicator.spicy span,
.dietary-badge.spicy,
.dietary-badge.spicy span {
    color: #ff5252 !important;
    opacity: 1 !important;
    font-weight: 700 !important;
}

/* NEW */
.new-badge,
.new-badge span,
.menu-indicator.new,
.menu-indicator.new span {
    color: #38bdf8 !important;
    opacity: 1 !important;
    font-weight: 700 !important;
}

/* POPULAR */
.popular-badge,
.popular-badge span,
.menu-indicator.popular,
.menu-indicator.popular span {
    color: #ffd43b !important;
    opacity: 1 !important;
    font-weight: 700 !important;
}

/* GF */
.gf-badge,
.gf-badge span,
.menu-indicator.gf,
.menu-indicator.gf span {
    color: #c084fc !important;
    opacity: 1 !important;
    font-weight: 700 !important;
}