        /* ==========================================================================
   DOSTI CAFE — Main CSS
   Espresso Brown + Warm Caramel — Premium Coffee House Theme
   ========================================================================== */

/* ── Google Fonts ─────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800&family=Roboto+Slab:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────────────────── */
:root {
    /* Primary Palette — Warm Coffee House */
    --color-dark-green: #2c1a0e;
    --color-dark-green-deep: #1e0f05;
    --color-orange: #c8956c;
    --color-orange-hover: #b5825c;
    --color-orange-light: #d4a87c;
    --color-yellow-bar: #c8956c;
    --color-cream: #f0ebe4;
    --color-cream-light: #f5f2ef;
    --color-white: #ffffff;
    --color-dark: #2a1f17;
    --color-text: #3d2e23;
    --color-text-light: #7a6a5e;
    --color-text-on-dark: #d4c4b0;
    --color-border: #e5ddd5;
    --color-green: #6b3a1f;

    /* Typography */
    --font-display: 'Fredoka', 'Segoe UI', sans-serif;
    --font-body: 'Fredoka', 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', 'Roboto Slab', Georgia, serif;

    /* Sizing */
    --max-width: 1200px;
    --nav-height: 90px;
    --topbar-height: 40px;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-pill: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44, 26, 14, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 26, 14, 0.10);
    --shadow-lg: 0 8px 40px rgba(44, 26, 14, 0.14);
    --shadow-accent: 0 4px 20px rgba(200, 149, 108, 0.3);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-cream-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--color-dark);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Utility ──────────────────────────────────────────────────────────── */
.text-center {
    text-align: center;
}

.text-orange {
    color: var(--color-orange);
}

.section-pad {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--color-dark);
    border-radius: 2px;
    margin: 12px auto 40px;
}

.section-divider.left {
    margin-left: 0;
}

/* ==========================================================================
   TOP BAR (yellow strip with contact info)
   ========================================================================== */
.topbar {
    background: var(--color-yellow-bar);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark);
    position: relative;
    z-index: 1001;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-left a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-dark);
    transition: var(--transition-fast);
}

.topbar-left a:hover {
    color: var(--color-dark-green);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-social {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 13px;
    transition: var(--transition);
}

.topbar-social:hover {
    background: var(--color-orange);
    transform: scale(1.1);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-dark-green);
    height: var(--nav-height);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.navbar-logo img {
    height: 70px;
    width: auto;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-links a {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
    border-radius: 1px;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
    width: 60%;
}

.navbar-links a:hover {
    color: var(--color-orange);
}

.navbar-links a.active {
    color: var(--color-white);
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-orange);
    color: var(--color-white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: var(--transition) !important;
    box-shadow: var(--shadow-accent);
}

.navbar-cta::after {
    display: none !important;
}

.navbar-cta:hover {
    background: var(--color-orange-hover) !important;
    color: var(--color-white) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    z-index: 1002;
}

.nav-hamburger span {
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/img/hero-bg.webp') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(44, 26, 14, 0.5) 0%,
            rgba(44, 26, 14, 0.25) 40%,
            rgba(30, 15, 5, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 40px 24px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-white);
    font-weight: 700;
    font-style: normal;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   MARQUEE BAR
   ========================================================================== */
.marquee-bar {
    background: var(--color-orange);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100vw;
}

.marquee-track {
    display: flex;
    animation: marquee-scroll 20s linear infinite;
}

.marquee-track span {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0 40px;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   INTRO SECTION
   ========================================================================== */
.intro-section {
    padding: 80px 0 60px;
    background: var(--color-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.intro-logo {
    height: 80px;
    width: auto;
    margin-top: 10px;
}

/* Intro images row — staggered */
.intro-images {
    display: flex;
    gap: 20px;
    padding: 0 24px 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--color-white);
}

.intro-img-card {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 3px solid var(--color-orange);
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.intro-img-card:nth-child(2) {
    transform: translateY(40px);
    flex: 1.3;
    aspect-ratio: 4/4;
}

.intro-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-img-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.intro-img-card:nth-child(2):hover {
    transform: translateY(36px);
}

/* ==========================================================================
   3-CARD GRID (Menus / Order Online / Contact Us)
   ========================================================================== */
.card-grid-section {
    padding: 0 0 80px;
    background: var(--color-cream-light);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.card-grid-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 3px solid var(--color-orange);
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: var(--transition);
}

.card-grid-item:nth-child(2) {
    transform: translateY(-30px);
    aspect-ratio: 3/3.5;
}

.card-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card-grid-item:hover img {
    transform: scale(1.05);
}

.card-grid-item .grid-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--color-orange);
    color: var(--color-white);
    text-align: center;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.card-grid-item:hover .grid-label {
    background: var(--color-orange-hover);
    transform: translateY(-3px);
}

/* ==========================================================================
   DISCOVER MENU (Tabbed Section)
   ========================================================================== */
.discover-menu-section {
    padding: 80px 0;
    background: var(--color-cream-light);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.menu-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 24px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    background: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
    min-width: 110px;
}

.menu-tab-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-orange);
}

.menu-tab-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--color-orange);
    border-color: var(--color-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
}

.menu-tab:hover .menu-tab-icon,
.menu-tab.active .menu-tab-icon,
.menu-tab:hover .menu-tab-label,
.menu-tab.active .menu-tab-label {
    color: var(--color-white);
}

/* Pentagon/arrow shape for active tab */
.menu-tab.active {
    position: relative;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

/* Menu content card */
.menu-content-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    background: var(--color-cream);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.menu-content-img {
    position: relative;
    overflow: hidden;
}

.menu-content-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.menu-content-details {
    padding: 40px;
}

.menu-content-details h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.menu-item-row {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.menu-item-row h4 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.menu-item-row p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.menu-item-row:last-of-type {
    border-bottom: none;
}

.btn-view-more {
    display: inline-block;
    margin-top: 20px;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 10px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-view-more:hover {
    background: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

/* Full-width "View More Menu" CTA */
.menu-cta-wrap {
    text-align: center;
    margin-top: 40px;
}

.btn-cta-large {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 16px 80px;
    border-radius: var(--radius-pill);
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-accent);
}

.btn-cta-large:hover {
    background: var(--color-orange-hover);
    transform: translateY(-2px);
}

/* ==========================================================================
   PROMO BANNERS (Order Online + Download App)
   ========================================================================== */
.promo-section {
    padding: 60px 0;
    background: var(--color-cream-light);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.promo-card {
    background: var(--color-dark);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a2c17' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.promo-card-logo {
    height: 50px;
    width: auto;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
}

.promo-card h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-white);
    font-style: italic;
    line-height: 1.1;
}

.promo-card .promo-sub {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 2px;
    margin-top: 4px;
}

.promo-discount {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 700;
    margin-top: 16px;
}

.promo-stores {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.promo-store-badge {
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   CUSTOMER FEEDBACK / TESTIMONIALS
   ========================================================================== */
.feedback-section {
    padding: 80px 0;
    background: var(--color-cream-light);
}

.feedback-title-wrap {
    margin-bottom: 48px;
}

.feedback-title-wrap h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.feedback-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feedback-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.feedback-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feedback-stars {
    color: var(--color-orange);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.feedback-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feedback-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-orange);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.feedback-author-info h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
}

.feedback-author-info p {
    font-size: 12px;
    color: var(--color-text-light);
}

/* ==========================================================================
   DARK CTA SECTION ("What We Have for You?")
   ========================================================================== */
.dark-cta-section {
    background: var(--color-dark-green-deep);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.dark-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dark-cta-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 20px;
}

.dark-cta-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-on-dark);
}

.dark-cta-collage {
    display: grid;
    grid-template-areas: 
        "img1 img1 img2"
        "img3 img4 img4";
    gap: 16px;
    min-height: 480px;
}

.collage-cell {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.collage-cell:nth-child(1) { grid-area: img1; }
.collage-cell:nth-child(2) { grid-area: img2; }
.collage-cell:nth-child(3) { grid-area: img3; }
.collage-cell:nth-child(4) { grid-area: img4; }

.collage-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.collage-cell:hover img {
    transform: scale(1.05);
}

.collage-cell img.fade-out {
    opacity: 0;
}

.btn-view-gallery {
    display: inline-block;
    margin-top: 28px;
    padding: 12px 32px;
    background: var(--color-orange);
    color: var(--color-white);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--shadow-accent);
}

.btn-view-gallery:hover {
    background: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200, 149, 108, 0.4);
}

/* ==========================================================================
   CONTACT / FORM SECTION
   ========================================================================== */
.contact-section {
    background: var(--color-orange);
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.contact-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-inner h2 {
    font-size: 2.5rem;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 32px;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* ==========================================================================
   INSTAGRAM / SOCIAL GRID
   ========================================================================== */
.insta-section {
    padding: 60px 0;
    background: var(--color-cream-light);
}

.insta-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.insta-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.insta-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color-orange);
    overflow: hidden;
}

.insta-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-info h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
}

.insta-info p {
    font-size: 13px;
    color: var(--color-text-light);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.insta-grid-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
}

.insta-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-grid-item:hover img {
    transform: scale(1.08);
}

.insta-grid-item:hover {
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #f7f3ee;
    background-image:
        url('../img/sketch-left.png'),
        url('../img/sketch-right.png');
    background-position:
        left bottom,
        right center;
    background-repeat:
        no-repeat,
        no-repeat;
    background-size:
        clamp(200px, 20vw, 400px) auto,
        clamp(180px, 20vw, 300px) auto;
    background-blend-mode: multiply;
    padding: 80px 0 0;
    border-top: none;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo-col {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-main-logo {
    height: 120px;
    object-fit: contain;
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--color-dark);
    font-weight: 500;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--color-orange);
}

.opening-hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 250px;
}

.opening-hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--color-dark);
}

.opening-hour-day {
    font-weight: 500;
}

.opening-hour-time {
    font-weight: 600;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.6;
}

.footer-contact-icon {
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-footer-order {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 13px;
    margin-top: 12px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-footer-order:hover {
    background: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 149, 108, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    font-size: 13px;
    color: var(--color-dark);
    font-weight: 500;
}

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-orange);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-accent);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--color-orange-hover);
    transform: translateY(-3px);
}

/* ==========================================================================
   SKELETON LOADERS
   ========================================================================== */
.skeleton {
    background: linear-gradient(90deg, #e8e0d5 25%, #f0e8e0 50%, #e8e0d5 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    height: 300px;
    border-radius: var(--radius);
}

.skeleton-text {
    height: 16px;
    margin-bottom: 10px;
}

.skeleton-text.short {
    width: 60%;
}

/* State containers */
.state-empty,
.state-error {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-light);
}

.state-empty .state-icon,
.state-error .state-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

/* ==========================================================================
   MENU PAGE — Filter + Cards
   ========================================================================== */
.page-header {
    background: var(--color-dark-green);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    font-weight: 700;
}

.page-header p {
    color: var(--color-text-on-dark);
    font-size: 16px;
    margin-top: 8px;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 32px 0;
}

.filter-tab {
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}

/* Menu grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding-bottom: 80px;
}

.menu-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.menu-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-card-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    font-size: 48px;
}

.menu-card-body {
    padding: 20px;
}

.menu-card-category {
    display: inline-block;
    background: rgba(200, 149, 108, 0.12);
    color: var(--color-orange);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.menu-card-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
}

.menu-card-price {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-orange);
    flex-shrink: 0;
}

.menu-card-prices {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    line-height: 1.2;
}

.price-box.half {
    background: rgba(107, 58, 31, 0.08);
    /* warm brown tint */
    color: var(--color-green);
}

.price-box.full {
    background: rgba(200, 149, 108, 0.12);
    /* caramel tint */
    color: var(--color-orange);
}

.price-box-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 2px;
}

.price-box-val {
    font-size: 15px;
    font-weight: 800;
}

.menu-card-desc {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ==========================================================================
   GALLERY PAGE
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    padding-bottom: 80px;
}

.gallery-grid-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1;
    transition: var(--transition);
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-grid-item:hover img {
    transform: scale(1.05);
}

.gallery-grid-item:hover {
    box-shadow: var(--shadow-lg);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--color-white);
    padding: 20px 16px 12px;
    font-size: 13px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--color-white);
    font-size: 32px;
    cursor: pointer;
    z-index: 2001;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Lightbox arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: 2001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

/* ==========================================================================
   OFFERS PAGE
   ========================================================================== */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    padding-bottom: 80px;
}

.offer-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.offer-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-card-body {
    padding: 24px;
}

.offer-card-badge {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.offer-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-card-desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.offer-card-validity {
    font-size: 12px;
    color: var(--color-text-light);
    font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .menu-content-card {
        grid-template-columns: 1fr;
    }

    .menu-content-img img {
        min-height: 250px;
    }

    .dark-cta-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feedback-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .navbar-links {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 280px;
        height: 100vh;
        background: var(--color-dark-green);
        border-left: 4px solid var(--color-orange);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: var(--transition);
        z-index: 1001;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .navbar-links.open {
        transform: translateX(0);
    }

    .navbar-links a {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: var(--radius-sm);
    }

    .navbar-links a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .navbar-links a::after {
        display: none;
    }

    .navbar-cta {
        margin-top: 16px;
        justify-content: center;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero {
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-grid-item:nth-child(2) {
        transform: none;
    }

    .intro-images {
        flex-direction: column;
    }

    .intro-img-card:nth-child(2) {
        transform: none;
    }

    .menu-tabs {
        gap: 8px;
    }

    .menu-tab {
        min-width: 80px;
        padding: 12px 14px 10px;
    }

    .menu-tab-icon {
        font-size: 22px;
        width: 38px;
        height: 38px;
    }

    .menu-tab-label {
        font-size: 11px;
    }

    .menu-tab.active {
        clip-path: none;
        border-radius: var(--radius);
        padding-bottom: 10px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .promo-card {
        min-height: 200px;
        padding: 28px;
    }



    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }

    /* Global mobile overflow prevention */
    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
        word-wrap: break-word;
    }

    .marquee-track span {
        font-size: 14px;
        padding: 0 20px;
    }

    .promo-card h3 {
        font-size: 1.8rem;
    }

    .contact-inner h2 {
        font-size: 1.6rem;
    }

    .contact-map iframe {
        height: 300px;
    }

    .dark-cta-collage {
        grid-template-areas: 
            "img1 img1"
            "img3 img2"
            "img4 img4";
        min-height: 480px;
    }

    .dark-cta-text h2 {
        font-size: 1.8rem;
    }

    .dark-cta-featured {
        aspect-ratio: 16/9;
        min-height: 220px;
    }

    .feedback-card {
        padding: 24px;
    }

    .footer {
        background-size:
            clamp(120px, 30vw, 200px) auto,
            clamp(100px, 25vw, 180px) auto;
        padding: 48px 0 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 12px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .filter-tabs {
        gap: 6px;
        padding: 20px 0;
    }

    .filter-tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    .intro-heading {
        font-size: 1.8rem;
    }

    .btn-cta-large {
        padding: 14px 40px;
        font-size: 16px;
    }

    .intro-img-card {
        border-width: 2px;
    }

    .card-grid-item {
        border-width: 2px;
    }
}    