/* =========================================
   ROOT
========================================= */

:root {
    --brown-dark: #2b1712;
    --brown: #4a241b;
    --brown-light: #704032;

    --red-dark: #780d12;
    --red: #a71920;
    --red-light: #c52b32;

    --cream: #fff8ef;
    --cream-dark: #f5e8d6;

    --white: #ffffff;
    --black: #17100e;
    --text: #665752;

    --gold: #c9954b;

    --shadow: 0 15px 40px rgba(43, 23, 18, 0.12);

    --transition: all 0.35s ease;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--cream);
    color: var(--black);
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

button {
    border: 0;
    cursor: pointer;
}


/* =========================================
   COMMON
========================================= */

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.section {
    padding: 100px 0;
}

.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 55px;
}

.section-label {
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.section-heading h2,
.about-content h2,
.contact-info h2 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.15;
    color: var(--brown-dark);
}

.section-heading h2 span,
.about-content h2 span,
.contact-info h2 span {
    color: var(--red);
}

.section-heading p {
    margin-top: 18px;
    color: var(--text);
}


/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(43, 23, 18, 0.97);
    padding: 10px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*
.logo {
    color: white;
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: "DM Serif Display", serif;
    font-size: 26px;
}

.logo span {
    color: white;
}

.logo small {
    color: #dba65b;
    font-family: "Poppins", sans-serif;
    font-size: 9px;
    letter-spacing: 5px;
    text-align: center;
    margin-top: 5px;
}
*/

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text span {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}

.logo-text small {
    margin-top: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    color: #ffffff;
}

@media (max-width: 768px) {
   .logo img {
        width: 45px;
        height: 45px;
    }

    .logo-text span {
        font-size: 20px;
        color:#ffffff;
    }

    .logo-text small {
        font-size: 11px;
        letter-spacing: 3px;
        color: #ffffff;
        font-weight: bold;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: white;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.nav-links > a:not(.nav-btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links > a:hover::after,
.nav-links > a.active::after {
    width: 100%;
}

.nav-btn {
    background: var(--red);
    padding: 11px 22px;
    border-radius: 30px;
}

.nav-btn:hover {
    background: var(--red-light);
}

.hamburger {
    display: none;
    background: transparent;
    color: white;
    font-size: 25px;
}


/* =========================================
   HERO
========================================= */
/*
.hero {
    min-height: 100vh;
    position: relative;

    background:
        url("images/banner.jpg")
        center/cover no-repeat;

    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(43, 23, 18, 0.95),
            rgba(43, 23, 18, 0.6),
            rgba(43, 23, 18, 0.2)
        );
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 750px;
    padding-top: 70px;
}

.hero-small {
    color: #e2af64;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
}

.hero h1 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(60px, 9vw, 100px);
    line-height: 1;
    margin: 20px 0;
}

.hero h1 span {
    display: block;
    color: #d52a32;
}

.hero p {
    max-width: 570px;
    font-size: 17px;
    color: #f6e9dc;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}
*/

/* ========================================= 
    HERO BANNER SLIDER 
   ========================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #111;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* SHOW COMPLETE IMAGE */
.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Content */
.hero-content {
    position: absolute;
    z-index: 2;
    top: 40%;
    left: 22%;
    transform: translateY(-50%);
    max-width: 1100px;
    color: #fff;
    text-align: center;
}

.hero-small {
    display: block;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.hero-content h1 {
    margin: 0 0 20px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-content h1 span {
    color: #d8a15d;
}

.hero-content p {
    max-width: 800px;
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #f1f1f1;
    font-weight: 700;
}

/* =========================================
   MOBILE HERO BANNER - FIX
========================================= */

@media (max-width: 768px) {

    .hero-slider {
        position: relative;
        width: 100%;
        height: 340px !important;
        overflow: hidden;
        background: transparent !important;
    }

    .hero-slide {
        position: absolute !important;
        inset: 0;
        width: 100%;
        height: 100% !important;
        overflow: hidden;
    }

    .hero-slide.active {
        position: absolute !important;
        width: 100%;
        height: 100% !important;
    }

    .hero-slide img {
        width: 100% !important;
        height: 100% !important;
        display: block;
        object-fit: fill !important;
        object-position: center;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25);
        z-index: 1;
    }

    /* Content */
    .hero-content {
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 15px;
        right: 15px;
        transform: translateY(-50%);
        max-width: none;
        text-align: center;
    }

    .hero-small {
        font-size: 9px;
        letter-spacing: 2px;
        margin-bottom: 5px;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 0.95;
        margin-bottom: 10px;
    }

    .hero-content p {
        max-width: 330px;
        margin: 0 auto 15px;
        font-size: 13px;
        line-height: 1.25;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons .btn {
        padding: 12px 30px;
        font-size: 13px;
    }

    /* Arrows */
    .slider-btn {
        width: 40px;
        height: 40px;
        z-index: 5;
    }

    .slider-btn.prev {
        left: 12px;
    }

    .slider-btn.next {
        right: 12px;
    }

    /* Dots */
    .slider-dots {
        bottom: 12px;
        z-index: 5;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .hero-slider {
        height: 365px !important;
    }

    .hero-content {
        top: 50%;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content h1 span {
        color: #ffffff;
    }

    .hero-content p {
        font-size: 12px;
        max-width: 300px;
    }

    .hero-buttons .btn {
        padding: 11px 28px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

/* =========================================
   SLIDER ARROWS
========================================= */

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.3);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #8b2f23;
    border-color: #8b2f23;
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}


/* =========================================
   SLIDER DOTS
========================================= */

.slider-dots {
    position: absolute;
    z-index: 5;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 11px;
    height: 11px;

    padding: 0;

    border: 2px solid #fff;
    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 30px;
    border-radius: 10px;
    background: #d8a15d;
    border-color: #d8a15d;
}

@media (max-width: 768px) {

    .hero-slider {
        height: 600px;
    }

    .hero-content {
        left: 25px;
        right: 25px;
        max-width: none;
        text-align: center;
    }

    .hero-small {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.7;
        font-weight: bold;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons .btn {
        padding: 12px 18px;
        font-size: 13px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn.prev {
        left: 12px;
    }

    .slider-btn.next {
        right: 12px;
    }

    .slider-dots {
        bottom: 20px;
    }
}


@media (max-width: 480px) {

    .hero-slider {
        height: 550px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 13px;
        font-weight: bold;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 180px;
        justify-content: center;
    }

}

/* =========================================
   BUTTON
========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 28px;
    border-radius: 5px;

    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}

.btn-primary {
    background: var(--red);
    color: white;
}

.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(167, 25, 32, 0.3);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.7);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--brown-dark);
}

.btn-light {
    background: white;
    color: var(--red);
}

.btn-light:hover {
    transform: translateY(-3px);
}


/* =========================================
   ABOUT
========================================= */

.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 520px;
}

.about-img {
    position: absolute;
    overflow: hidden;
}

.about-img img {
    height: 100%;
    transition: var(--transition);
}

.about-img:hover img {
    transform: scale(1.05);
}

.main-img {
    width: 70%;
    height: 450px;
    top: 0;
    left: 0;
}

.small-img {
    width: 48%;
    height: 280px;
    right: 0;
    bottom: 0;
    border: 12px solid var(--cream);
}

.experience-box {
    position: absolute;
    left: 45%;
    bottom: 55px;

    background: var(--red);
    color: white;

    padding: 22px 28px;

    display: flex;
    align-items: center;
    gap: 15px;

    box-shadow: var(--shadow);
}

.experience-box strong {
    font-family: "DM Serif Display", serif;
    font-size: 42px;
}

.experience-box span {
    font-size: 12px;
    line-height: 1.4;
}

.about-content > p {
    color: var(--text);
    margin: 20px 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 30px 0;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.about-features i {
    color: var(--red);
    font-size: 18px;
}


/* =========================================
   STATS
========================================= */

.stats {
    background: var(--brown-dark);
    padding: 55px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    text-align: center;
    padding: 10px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.stat:last-child {
    border-right: 0;
}

.stat i {
    color: var(--gold);
    font-size: 25px;
    margin-bottom: 10px;
}

.stat strong {
    display: block;
    font-family: "DM Serif Display", serif;
    font-size: 35px;
}

.stat span {
    color: #c9b9b2;
    font-size: 13px;
}


/* =========================================
   GALLERY
========================================= */
/*
.gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item img {
    height: 100%;
    transition: transform .6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;

    background: rgba(120, 13, 18, 0.65);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    width: 50px;
    height: 50px;
    border-radius: 50%;

    background: white;
    color: var(--red);

    display: grid;
    place-items: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
*/
/* =========================================
   GALLERY WITH IMAGE + NAME
========================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.08);
}

.gallery-name {
    padding: 18px 15px;
    text-align: center;
}

.gallery-name h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 600;
    color: #8b2f23;
}


/* Tablet */

@media (max-width: 992px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* Mobile */

@media (max-width: 576px) {

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image {
        height: 240px;
    }

    .gallery-name {
        padding: 15px;
    }

    .gallery-name h3 {
        font-size: 19px;
    }

}

/* =========================================
   MENU
========================================= */
/*.menu {
    background:
        linear-gradient(rgba(255, 248, 239, 0.92), rgba(255, 248, 239, 0.92)),
        url("../images/cta.jpg") center/cover fixed;
}

.menu-shell {
    margin-top: 18px;
    display: grid;
    gap: 28px;
}

.menu-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 12px;
    background: rgba(255, 248, 239, 0.92);
    border: 1px solid rgba(74, 36, 27, 0.08);
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(43, 23, 18, 0.08);
}

.menu-filter-btn {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--brown-dark);
    border: 1px solid rgba(74, 36, 27, 0.1);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.menu-filter-btn:hover,
.menu-filter-btn.active {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-1px);
}

.menu-group {
    display: grid;
    gap: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(74, 36, 27, 0.08);
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(43, 23, 18, 0.05);
}

.menu-group-heading {
    display: grid;
    gap: 6px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(74, 36, 27, 0.08);
}

.menu-group-heading h3 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(22px, 2.4vw, 30px);
    color: var(--brown-dark);
}

.menu-cards-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.menu-card-item {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(74, 36, 27, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(43, 23, 18, 0.08);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

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

.menu-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(43, 23, 18, 0.9);
    color: var(--white);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.menu-card-body {
    padding: 16px;
    display: grid;
    gap: 10px;
}

.menu-card-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.menu-card-title {
    margin: 0;
    font-family: "DM Serif Display", serif;
    font-size: 18px;
    line-height: 1.15;
    color: var(--brown-dark);
}

.menu-card-price {
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    text-align: right;
}

.menu-card-note {
    margin: 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.6;
}

.menu-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.menu-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(167, 25, 32, 0.08);
    color: var(--red-dark);
    font-size: 11px;
    font-weight: 700;
}

.menu-empty {
    display: none;
    text-align: center;
    padding: 20px 16px;
    color: var(--text);
}

.menu-button {
    text-align: center;
    margin-top: 36px;
}
@media (max-width: 992px) {
    .menu-cards-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-filters {
        position: static;
        padding: 10px;
        border-radius: 18px;
    }

    .menu-group {
        padding: 16px;
    }

    .menu-cards-group {
        grid-template-columns: 1fr;
    }

    .menu-card-top {
        flex-direction: column;
    }

    .menu-card-price {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .menu-filter-btn {
        padding: 9px 13px;
        font-size: 12px;
    }

    .menu-card-title {
        font-size: 17px;
    }
}
.menu-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(120, 13, 18, 0.18);
    transition: var(--transition);
}

.menu-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(120, 13, 18, 0.25);
}*/
/* =========================================
   MENU SECTION
========================================= */

.menu {
    padding: 90px 0;
    background: #fff;
}

.menu-shell {
    margin-top: 45px;
}


/* =========================================
   TOP LEVEL FILTERS
========================================= */

.menu-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
}

.menu-filter-btn {
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-filter-btn:hover {
    border-color: #a62626;
    color: #a62626;
    transform: translateY(-2px);
}

.menu-filter-btn.active {
    background: #a62626;
    border-color: #a62626;
    color: #fff;
    box-shadow: 0 8px 20px rgba(166, 38, 38, 0.2);
}


/* =========================================
   MAIN GROUP
========================================= */

.menu-main-group {
    margin-bottom: 70px;
}

.menu-main-heading {
    text-align: center;
    margin-bottom: 35px;
}

.menu-main-heading .section-label {
    display: inline-block;
    margin-bottom: 8px;
}

.menu-main-heading h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 34px;
    color: #222;
}


/* =========================================
   CATEGORY
========================================= */

.menu-category {
    margin-bottom: 55px;
}

.menu-category-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e8e8e8;
}

.category-label {
    display: block;
    margin-bottom: 5px;
    color: #a62626;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.menu-category-heading h3 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    line-height: 1.2;
    color: #222;
}

.menu-category-heading p {
    margin: 7px 0 0;
    color: #777;
    font-size: 14px;
}


/* =========================================
   PRODUCT LIST
========================================= */

.menu-list {
    display: flex;
    flex-direction: column;
}

.menu-list-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 25px;

    padding: 20px 5px;

    border-bottom: 1px solid #eeeeee;

    transition: all 0.25s ease;
}

.menu-list-item:first-child {
    border-top: 1px solid #eeeeee;
}

.menu-list-item:hover {
    padding-left: 15px;
    padding-right: 15px;
    background: #fffaf7;
}


/* =========================================
   PRODUCT CONTENT
========================================= */

.menu-list-content {
    min-width: 0;
}

.menu-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.menu-card-title {
    margin: 0;

    color: #222;

    font-size: 18px;
    font-weight: 600;
}

.menu-card-price {
    color: #a62626;

    font-size: 18px;
    font-weight: 700;

    white-space: nowrap;
}

.menu-card-note {
    margin: 7px 0 10px;

    color: #777;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================
   TAGS
========================================= */

.menu-card-meta {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 7px;
}

.menu-tag {
    display: inline-flex;

    align-items: center;
    gap: 5px;

    padding: 4px 9px;

    border-radius: 4px;

    background: #f3f3f3;

    color: #666;

    font-size: 10px;
    font-weight: 600;
}

.menu-tag.veg {
    background: #edf7ed;
    color: #3d7c3d;
}

.menu-tag.vegan {
    background: #edf7ed;
    color: #287028;
}

.menu-tag.spicy {
    background: #fff1ed;
    color: #c34a2c;
}

.menu-tag.very-spicy {
    background: #ffe8e3;
    color: #a62626;
}


/* =========================================
   ORDER BUTTON
========================================= */

.menu-list-action {
    display: flex;
    justify-content: flex-end;
}

.menu-order-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-width: 95px;

    padding: 10px 17px;

    border: 1px solid #a62626;
    border-radius: 6px;

    color: #a62626;
    background: #fff;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: all 0.25s ease;
}

.menu-order-btn:hover {
    background: #a62626;
    color: #fff;

    transform: translateY(-1px);

    box-shadow: 0 5px 15px rgba(166, 38, 38, 0.18);
}

.menu-order-btn i {
    font-size: 10px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .menu-list-item {
        grid-template-columns: 1fr;
        gap: 12px;

        padding: 18px 0;
    }

    .menu-list-action {
        justify-content: flex-start;
    }

    .menu-order-btn {
        min-width: 100px;
    }
}


@media (max-width: 480px) {

    .menu-list-item {
        padding: 16px 0;
    }

    .menu-list-header {
        align-items: flex-start;
        gap: 10px;
    }

    .menu-card-title {
        font-size: 16px;
    }

    .menu-card-price {
        font-size: 16px;
    }

    .menu-card-note {
        font-size: 12px;
    }

    .menu-order-btn {
        width: 100%;
    }
}

/* =========================================
   LOADING
========================================= */

.menu-loading {
    padding: 60px 20px;
    text-align: center;
    color: #777;
}

.menu-loader {
    width: 35px;
    height: 35px;
    margin: 0 auto 15px;
    border: 3px solid #eee;
    border-top-color: #a62626;
    border-radius: 50%;
    animation: menuLoader 0.8s linear infinite;
}

@keyframes menuLoader {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================
   ERROR
========================================= */

.menu-error {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 10px;
    background: #fff3f3;
    color: #a62626;
    text-align: center;
}

.menu-error i {
    margin-bottom: 8px;
    font-size: 25px;
}

.menu-error p {
    margin: 0;
}


/* =========================================
   EMPTY
========================================= */

.menu-empty {
    padding: 70px 20px;
    text-align: center;
    color: #777;
}

.menu-empty i {
    margin-bottom: 15px;
    color: #bbb;
    font-size: 40px;
}

.menu-empty h3 {
    margin: 0 0 5px;
    color: #333;
}

.menu-empty p {
    margin: 0;
}


/* =========================================
   BOTTOM BUTTON
========================================= */

.menu-button {
    margin-top: 30px;
    text-align: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .menu {
        padding: 65px 0;
    }

    .menu-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 5px 2px 12px;
        margin-bottom: 45px;
        scrollbar-width: none;
    }

    .menu-filters::-webkit-scrollbar {
        display: none;
    }

    .menu-filter-btn {
        flex-shrink: 0;
        padding: 11px 22px;
    }

    .menu-main-heading h2 {
        font-size: 29px;
    }

    .menu-category-heading h3 {
        font-size: 24px;
    }

    .menu-list-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }

    .menu-list-image {
        width: 80px;
        height: 80px;
    }

    .menu-list-action {
        grid-column: 2;
        justify-content: flex-start;
        margin-top: 3px;
    }

    .menu-order-btn {
        padding: 8px 14px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    .menu {
        padding: 50px 0;
    }

    .menu-shell {
        margin-top: 30px;
    }

    .menu-filters {
        margin-bottom: 35px;
    }

    .menu-filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .menu-category {
        margin-bottom: 40px;
    }

    .menu-category-heading {
        margin-bottom: 15px;
    }

    .menu-category-heading h3 {
        font-size: 22px;
    }

    .menu-list-item {
        grid-template-columns: 70px 1fr;
        gap: 12px;
        padding: 17px 0;
    }

    .menu-list-image {
        width: 70px;
        height: 70px;
        border-radius: 9px;
    }

    .menu-list-header {
        align-items: flex-start;
        gap: 8px;
    }

    .menu-card-title {
        font-size: 16px;
    }

    .menu-card-price {
        font-size: 16px;
    }

    .menu-card-note {
        font-size: 12px;
    }

    .menu-list-action {
        grid-column: 1 / -1;
        margin-left: 82px;
    }

    .menu-order-btn {
        width: 100%;
        justify-content: center;
    }
}
/* =========================================
   CTA
========================================= */

.cta {
    background:
        linear-gradient(
            rgba(120,13,18,.93),
            rgba(120,13,18,.93)
        ),
        url("images/cta.jpg") center/cover;

    padding: 90px 0;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 700px;
}

.cta span {
    letter-spacing: 4px;
    font-size: 12px;
    color: #e5b76e;
    font-weight: 600;
}

.cta h2 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(45px, 6vw, 65px);
    margin: 10px 0;
}

.cta h2 span {
    color: #e5b76e;
    letter-spacing: 0;
    font-size: inherit;
}

.cta p {
    margin-bottom: 25px;
}


/* =========================================
   CONTACT
========================================= */
/*
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
}

.contact-info > p {
    color: var(--text);
    margin: 20px 0 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.contact-icon {
    min-width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: var(--cream);
    color: var(--red);

    border-radius: 50%;
}

.contact-item h4 {
    color: var(--brown-dark);
    font-size: 14px;
}

.contact-item p {
    color: var(--text);
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    background: var(--brown-dark);
    color: white;

    border-radius: 50%;

    transition: var(--transition);
}

.social-links a:hover {
    background: var(--red);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--cream);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--brown-dark);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #e4d5c6;
    background: white;
    padding: 13px 15px;
    outline: none;
    font-size: 13px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red);
}

.form-group textarea {
    resize: vertical;
}
*/
/* =========================================
   CONTACT
========================================= */

.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.contact-info > p {
    color: var(--text);
    margin: 20px 0 30px;
    max-width: 500px;
}


/* CONTACT ITEMS */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0;
}

.contact-icon {
    min-width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: var(--cream);
    color: var(--red);

    border-radius: 50%;
}

.contact-item h4 {
    color: var(--brown-dark);
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-item p {
    color: var(--text);
    font-size: 13px;
    line-height: 1.6;
}


/* SOCIAL ICONS */

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    background: var(--brown-dark);
    color: white;

    border-radius: 50%;

    transition: var(--transition);
}

.social-links a:hover {
    background: var(--red);
    transform: translateY(-3px);
}


/* =========================================
   MAP
========================================= */

.map-container {
    position: relative;

    width: 100%;
    height: 550px;

    overflow: hidden;

    border-radius: 8px;

    box-shadow: var(--shadow);

    border: 8px solid var(--cream);
}

.map-container iframe {
    width: 100%;
    height: 100%;

    border: 0;

    display: block;
}


/* MAP INFORMATION CARD */

.map-card {
    position: absolute;

    left: 25px;
    bottom: 25px;

    background: white;

    padding: 15px 20px;

    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 240px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);

    border-left: 4px solid var(--red);
}

.map-card-icon {
    width: 40px;
    height: 40px;

    background: var(--red);

    color: white;

    display: grid;
    place-items: center;

    border-radius: 50%;
}

.map-card h4 {
    color: var(--brown-dark);
    font-size: 15px;
}

.map-card p {
    color: var(--text);
    font-size: 11px;
    margin-top: 2px;
}
@media (max-width: 768px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info > p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-item {
        text-align: left;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info .social-links {
        justify-content: center;
    }

    .map-container {
        height: 420px;
    }

}


@media (max-width: 576px) {

    .map-container {
        height: 350px;
        border-width: 5px;
    }

    .map-card {
        left: 15px;
        bottom: 15px;
        min-width: auto;
        right: 15px;
    }

}

/* =========================================
   FOOTER
========================================= */

.footer {
    background: var(--brown-dark);
    color: white;
}

.footer-grid {
    padding: 75px 0;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo {
    font-family: "DM Serif Display", serif;
    font-size: 30px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-about p {
    color: #b9aaa4;
    font-size: 13px;
    max-width: 320px;
    margin: 15px 0;
}

.footer .social-links {
    margin-top: 15px;
}

.footer .social-links a {
    background: rgba(255,255,255,.08);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links h3 {
    font-family: "DM Serif Display", serif;
    font-size: 20px;
    margin-bottom: 12px;
}

.footer-links a,
.footer-links p {
    color: #b9aaa4;
    font-size: 13px;
}

.footer-links a:hover {
    color: white;
}

.footer-links strong {
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 12px;
}

.footer-links p i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom .container {
    min-height: 65px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;
}

.footer-bottom p {
    color: #93837d;
    font-size: 12px;
}

.footer-bottom i {
    color: var(--red-light);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .section {
        padding: 80px 0;
    }

    .nav-links {
        gap: 18px;
    }

    .about-grid {
        gap: 50px;
    }

    .menu-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 768px) {

    .section {
        padding: 70px 0;
    }


    /* MOBILE NAV */

    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: var(--brown-dark);

        padding: 25px;

        flex-direction: column;
        align-items: stretch;

        gap: 18px;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition: var(--transition);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        text-align: center;
    }

    .nav-btn {
        text-align: center;
    }


    /* HERO */

    .hero {
        min-height: 700px;
    }

    .hero-content {
        text-align: center;
        margin: auto;
    }

    .hero p {
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        min-height: 450px;
    }

    .about-content {
        text-align: center;
    }

    .about-features {
        text-align: left;
    }


    /* STATS */

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 30px;
    }

    .stat:nth-child(2) {
        border-right: 0;
    }


    /* GALLERY */

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item.large {
        grid-column: span 2;
    }


    /* MENU */

    .menu-cards {
        grid-template-columns: 1fr 1fr;
    }


    /* CONTACT */

    .contact-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 576px) {

    .container {
        width: 90%;
    }

    .section {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }


    .about-images {
        min-height: 350px;
    }

    .main-img {
        width: 80%;
        height: 320px;
    }

    .small-img {
        height: 190px;
        width: 48%;
    }

    .experience-box {
        left: 32%;
        bottom: 20px;
        padding: 12px 18px;
    }

    .experience-box strong {
        font-size: 30px;
    }


    .about-features {
        grid-template-columns: 1fr;
    }


    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        border-right: 0;
    }


    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-item.large {
        grid-column: span 1;
    }


    .menu-cards {
        grid-template-columns: 1fr;
    }

    .menu-filter-btn {
        padding: 10px 14px;
    }


    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 25px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 55px 0;
    }

    .footer-bottom .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 18px 0;
    }

}
.special-offer {
    position: fixed;
    right: 28px;
    bottom: 28px;

    width: 150px;
    height: 150px;

    z-index: 9999;

    border-radius: 50%;

    cursor: pointer;

    /* 3D shadow */
    box-shadow:
        0 10px 0 #7b0909,
        0 16px 25px rgba(0, 0, 0, 0.35);

    animation: offerFloat 3s ease-in-out infinite;

    transform-style: preserve-3d;
}


/* Outer circle */

.offer-inner {
    position: relative;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 30% 25%,
            #ff6b5f 0%,
            #e92323 35%,
            #c20e0e 70%,
            #8b0000 100%
        );

    border: 4px solid #ffd166;

    box-shadow:
        inset 0 4px 8px rgba(255,255,255,0.45),
        inset 0 -8px 12px rgba(0,0,0,0.3);

    transform: translateZ(10px);
}


/* SPECIAL */

.offer-small {
    color: #ffe8a3;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    line-height: 1;
}


/* 10% */

.offer-inner strong {
    margin-top: 3px;

    color: #fff;

    font-family: "DM Serif Display", serif;

    font-size: 38px;

    line-height: 0.9;

    text-shadow:
        2px 3px 0 rgba(0,0,0,0.25),
        0 0 8px rgba(255,255,255,0.25);
}


/* OFF */

.offer-off {
    color: #ffd166;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-top: 3px;
}


/* Coupon code */

.offer-code {
    margin-top: 6px;

    color: #fff;

    font-family: "Poppins", sans-serif;

    font-size: 7px;

    font-weight: 500;

    line-height: 1.2;

    letter-spacing: 0.5px;
}

.offer-code b {
    display: block;

    margin-top: 2px;

    color: #fff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   SHINE EFFECT
========================================================= */

.offer-shine {
    position: absolute;

    top: -35px;
    left: -80px;

    width: 45px;
    height: 200px;

    background: rgba(255,255,255,0.35);

    transform: rotate(35deg);

    filter: blur(5px);

    animation: offerShine 4s ease-in-out infinite;

    pointer-events: none;
}


/* =========================================================
   GLOW
========================================================= */

.offer-glow {
    position: absolute;

    inset: -8px;

    border-radius: 50%;

    background: rgba(255, 193, 7, 0.25);

    filter: blur(10px);

    z-index: -1;

    animation: offerGlow 2s ease-in-out infinite;
}


/* =========================================================
   FLOATING ANIMATION
========================================================= */

@keyframes offerFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}


/* =========================================================
   SHINE ANIMATION
========================================================= */

@keyframes offerShine {

    0% {
        left: -80px;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    45% {
        left: 150px;
        opacity: 0;
    }

    100% {
        left: 150px;
        opacity: 0;
    }
}


/* =========================================================
   GLOW ANIMATION
========================================================= */

@keyframes offerGlow {

    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}


/* =========================================================
   HOVER
========================================================= */

.special-offer:hover {
    animation-play-state: paused;

    transform:
        translateY(-5px)
        rotateY(10deg)
        rotateX(5deg)
        scale(1.08);

    transition: transform 0.35s ease;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .special-offer {
        width: 130px;
        height: 130px;

        right: 18px;
        bottom: 18px;

        box-shadow:
            0 8px 0 #7b0909,
            0 12px 20px rgba(0, 0, 0, 0.3);
    }

    .offer-inner {
        border-width: 3px;
    }

    .offer-small {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .offer-inner strong {
        font-size: 32px;
    }

    .offer-off {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .offer-code {
        font-size: 6px;
    }

    .offer-code b {
        font-size: 9px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .special-offer {
        width: 125px;
        height: 125px;

        right: 12px;
        bottom: 15px;
    }

    .offer-inner strong {
        font-size: 28px;
    }

    .offer-code {
        margin-top: 4px;
    }

    .offer-code b {
        font-size: 8px;
    }
}
