/* =========================
   GLOBAL RESET
========================= */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lora', serif;
    background: #fdf4eb;
    color: #111;
}

/* LOGO + BRAND NAME */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #dbc8b0;
    white-space: nowrap;
}


/* =========================
   STICKY HEADER
========================= */
.sticky-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(29,57,55,0.95);
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.sticky-header .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-header .logo img {
    width: 70px;
    height: 70px;
}

.sticky-header .nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.sticky-header .nav-links a,
.sticky-header .nav-links i {
    color: #dbc8b0;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.sticky-header .nav-links a:hover,
.sticky-header .nav-links a.active,
.sticky-header .nav-links i:hover {
    color: #ffffff;
}

/* =========================
   HERO IMAGE (NO GAP)
========================= */
.menu-header-image {
    display: block;
    width: 100%;
    height: 100px;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

/* =========================
   BREADCRUMBS
========================= */
.breadcrumbs {
    max-width: 1200px;
    margin: 12px auto 0;
    padding: 0 30px;
    font-size: 0.95rem;
}

.breadcrumbs a {
    color: #377572;
    text-decoration: none;
}

.breadcrumbs span {
    margin: 0 6px;
}

/* =========================
   MENU GRID
========================= */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 30px;
}

/* =========================
   MENU CARD
========================= */
.menu-card-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.menu-card-item:hover {
    transform: translateY(-4px);
}

.menu-card-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
}

.menu-card-content {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin: 0;
    color: #1d3937;
}

.menu-card-content p {
    font-size: 0.85rem;
    margin: 0;
    color: #333;
}

.menu-price {
    font-weight: 700;
    color: #377572;
    font-size: 0.9rem;
}

/* =========================
   RULES / DISCLAIMERS
========================= */
.menu-rules,
.menu-disclaimer {
    max-width: 1000px;
    margin: 30px auto;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.95rem;
    background: rgba(29,57,55,0.08);
}

/* =========================
   FLOATING CTA
========================= */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.floating-cta a {
    background: #1d3937;
    color: #dbc8b0;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
}

.floating-cta a:hover {
    background: #377572;
    color: #fff;
}

/* =========================
   LIGHTBOX
========================= */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.85);
    z-index: 3000;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .sticky-header .header-container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }

    .menu-header-image {
        height: 160px;
    }

    .menu-items {
        padding: 0 20px;
    }
}
