:root {
    --bg: #f7ecde;
    --surface: rgba(255, 248, 240, 0.82);
    --surface-strong: #fff8f0;
    --card: #fffdf8;
    --text: #26140f;
    --muted: #6f5549;
    --accent: #8a2f1c;
    --accent-dark: #5e190e;
    --gold: #d9a441;
    --veg: #2f7a43;
    --non-veg: #8f2b1f;
    --border: rgba(79, 37, 23, 0.12);
    --shadow: 0 20px 50px rgba(87, 39, 22, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 999px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Outfit", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(217, 164, 65, 0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(138, 47, 28, 0.14), transparent 24%),
        linear-gradient(180deg, #fff8ee 0%, #f7ecde 45%, #f3e3d2 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(138, 47, 28, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 47, 28, 0.035) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
    opacity: 0.45;
    z-index: -1;
}

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

img {
    display: block;
    width: 100%;
}

main,
.site-header,
.announcement-bar,
.site-footer {
    padding-left: clamp(1.1rem, 3vw, 4rem);
    padding-right: clamp(1.1rem, 3vw, 4rem);
}

main > section {
    max-width: 1220px;
    margin: 0 auto;
}

.announcement-bar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    background: #2c1610;
    color: #fff8f0;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
}

.announcement-bar span {
    opacity: 0.9;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    backdrop-filter: blur(14px);
    background: rgba(255, 248, 240, 0.78);
    border-bottom: 1px solid rgba(79, 37, 23, 0.08);
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #c34a2e);
    color: white;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(138, 47, 28, 0.22);
}

.brand-name,
h1,
h2,
h3 {
    font-family: "Cormorant Garamond", serif;
}

.brand-name {
    display: inline-block;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 700;
    line-height: 1;
}

.brand-tagline {
    margin: 0.3rem 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.site-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.site-nav a {
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    transition: 0.2s ease;
}

.site-nav a:hover {
    background: rgba(138, 47, 28, 0.08);
    color: var(--accent);
}

.hero-section,
.page-hero,
.featured-section,
.menu-preview,
.menu-board,
.dish-listing,
.contact-banner,
.value-strip {
    margin-top: 2rem;
}

.hero-section,
.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    padding: clamp(2rem, 4vw, 4rem);
    background:
        linear-gradient(145deg, rgba(255, 249, 243, 0.94), rgba(255, 239, 225, 0.88)),
        url("../Images/background (5).jpg") center/cover;
    border: 1px solid rgba(138, 47, 28, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.hero-section::after,
.page-hero::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    right: -90px;
    top: -120px;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.22), transparent 70%);
    pointer-events: none;
}

.hero-copy,
.dish-hero-copy {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.82rem;
    font-weight: 600;
}

h1 {
    margin: 0;
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 0.96;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1;
}

h3 {
    margin: 0;
    font-size: 1.6rem;
}

.hero-text {
    max-width: 42rem;
    margin: 1.3rem 0 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.hero-actions,
.contact-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.primary-btn,
.secondary-btn,
.dish-card a,
.featured-meta a,
.preview-card a,
.menu-card-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    background: linear-gradient(135deg, var(--accent), #bb4c2f);
    color: #fffaf3;
    box-shadow: 0 14px 28px rgba(138, 47, 28, 0.24);
}

.secondary-btn {
    border: 1px solid rgba(138, 47, 28, 0.2);
    background: rgba(255, 255, 255, 0.7);
}

.primary-btn:hover,
.secondary-btn:hover,
.dish-card a:hover,
.featured-meta a:hover,
.preview-card a:hover,
.menu-card-footer a:hover {
    transform: translateY(-2px);
}

.hero-highlights,
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.hero-highlights span,
.filter-pill,
.featured-badge,
.menu-type,
.dish-category {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(138, 47, 28, 0.12);
    font-size: 0.92rem;
}

.hero-visual,
.dish-hero-image {
    position: relative;
    min-height: 420px;
}

.hero-orb {
    position: absolute;
    inset: 10% auto auto 4%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 47, 28, 0.22), transparent 70%);
}

.hero-card {
    position: absolute;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 18px 40px rgba(48, 17, 9, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-card img,
.dish-hero-image img {
    height: 100%;
    object-fit: cover;
}

.hero-card-main {
    inset: 0 0 3.4rem 4rem;
    transform: rotate(-4deg);
}

.hero-card-small {
    right: 1rem;
    bottom: 0.2rem;
    width: 220px;
    height: 180px;
    transform: rotate(7deg);
}

.hero-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    display: grid;
    gap: 0.25rem;
    max-width: 240px;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(44, 22, 16, 0.9);
    color: #fff8f0;
}

.hero-badge strong {
    font-size: 1.8rem;
}

.value-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.value-strip article,
.empty-state,
.featured-card,
.preview-card,
.menu-card,
.dish-card {
    background: rgba(255, 253, 248, 0.86);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.featured-card[data-card-link],
.preview-card[data-card-link],
.menu-card[data-card-link],
.dish-card[data-card-link] {
    cursor: pointer;
}

.value-strip article {
    padding: 1.4rem;
}

.value-title,
.featured-menu,
.footer-label {
    margin: 0 0 0.45rem;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 700;
}

.value-strip p:last-child,
.section-copy p:last-child,
.featured-content p,
.preview-card p,
.menu-card p,
.dish-card p,
.site-footer p,
.site-footer a {
    color: var(--muted);
    line-height: 1.7;
}

.featured-section,
.menu-preview,
.dish-listing,
.menu-board {
    padding: clamp(1.4rem, 3vw, 2.2rem) 0 0;
}

.section-copy {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
}

.featured-shell {
    position: relative;
}

.featured-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 1rem;
    overflow-x: auto;
    padding: 0.25rem 0.25rem 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.featured-track::-webkit-scrollbar {
    display: none;
}

.featured-card {
    scroll-snap-align: start;
    overflow: hidden;
}

.featured-image-wrap {
    position: relative;
    height: 260px;
}

.featured-image-wrap img,
.preview-card img,
.menu-card img,
.dish-card img {
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: rgba(255, 248, 240, 0.92);
}

.featured-content,
.menu-card-content,
.dish-card-content,
.preview-card div:last-child {
    padding: 1.15rem;
}

.featured-meta,
.menu-card-footer,
.dish-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.featured-meta strong,
.dish-card-top strong {
    font-size: 1.08rem;
    color: var(--accent-dark);
}

.featured-meta a,
.preview-card a,
.menu-card-footer a,
.dish-card a {
    background: rgba(138, 47, 28, 0.08);
    color: var(--accent-dark);
    padding-left: 1rem;
    padding-right: 1rem;
}

.slider-control {
    position: absolute;
    top: calc(50% - 1rem);
    z-index: 2;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 50%;
    background: rgba(44, 22, 16, 0.88);
    color: #fff8f0;
    font-size: 1.8rem;
    cursor: pointer;
}

.slider-prev {
    left: -1rem;
}

.slider-next {
    right: -1rem;
}

.preview-grid,
.menu-grid,
.dish-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.preview-card,
.menu-card,
.dish-card {
    overflow: hidden;
}

.preview-card img,
.menu-card img,
.dish-card img {
    height: 240px;
}

.menu-card-footer span {
    font-size: 0.95rem;
    color: var(--muted);
}

.menu-type-veg {
    color: var(--veg);
    background: rgba(47, 122, 67, 0.08);
}

.menu-type-non-veg {
    color: var(--non-veg);
    background: rgba(143, 43, 31, 0.08);
}

.filter-pill {
    cursor: pointer;
    color: var(--text);
}

.filter-pill.active {
    background: linear-gradient(135deg, var(--accent), #bb4c2f);
    color: #fffaf3;
}

.menu-card.is-hidden {
    display: none;
}

.dish-hero-image {
    border-radius: 28px;
    overflow: hidden;
    min-height: 360px;
    box-shadow: var(--shadow);
}

.dish-grid .empty-state,
.menu-grid .empty-state,
.preview-grid .empty-state {
    grid-column: 1 / -1;
}

.empty-state {
    padding: 2rem;
}

.contact-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #2c1610, #8a2f1c);
    color: #fff8f0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.contact-banner .eyebrow,
.contact-banner p,
.contact-banner h2 {
    color: #fff8f0;
}

.contact-banner .secondary-btn {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff8f0;
}

.site-footer {
    margin-top: 2rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background: #2b1711;
    color: #fff8f0;
}

.footer-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
    gap: 1.2rem;
}

.site-footer h2,
.site-footer p,
.site-footer a {
    margin: 0;
}

.site-footer a {
    display: block;
    margin-top: 0.5rem;
    color: #f3d5a0;
}

.footer-note {
    max-width: 1220px;
    margin: 1.4rem auto 0;
    color: rgba(255, 248, 240, 0.72);
}

.floating-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 30;
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 3.5rem;
    min-height: 3.5rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #19b15d, #128c4a);
    color: white;
    box-shadow: 0 18px 38px rgba(18, 140, 74, 0.28);
    font-weight: 700;
}

@media (max-width: 1080px) {
    .hero-section,
    .page-hero,
    .preview-grid,
    .menu-grid,
    .dish-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slider-control {
        display: none;
    }
}

@media (max-width: 800px) {
    .site-header,
    .contact-banner,
    .value-strip,
    .hero-section,
    .page-hero,
    .preview-grid,
    .menu-grid,
    .dish-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-header,
    .contact-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-card-main {
        inset: 0 0 4rem 1rem;
    }

    .hero-card-small {
        width: 180px;
        height: 150px;
    }

    .floating-whatsapp {
        display: inline-flex;
    }
}

@media (max-width: 560px) {
    main,
    .site-header,
    .announcement-bar,
    .site-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    h1 {
        font-size: 2.7rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-visual,
    .dish-hero-image {
        min-height: 320px;
    }

    .hero-badge {
        max-width: 100%;
        right: 0;
    }

    .featured-track {
        grid-auto-columns: 86%;
    }
}
