/* ==============================
   RESET & BASE
================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

/* 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;
}

/* HIDE BRAND NAME ON MOBILE */
@media (max-width: 768px) {
    .brand-name {
        display: none;
    }
}


/* ==== STICKY TOP MENU ==== */
.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 {
    color: #dbc8b0;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.sticky-header .nav-links a:hover,
.sticky-header .nav-links a.active {
    color: #ffffff;
}
.sticky-header .nav-links i {
    font-size: 1.2rem;
    color: #dbc8b0;
}
.sticky-header .nav-links i:hover {
    color: #ffffff;
}

/* ==== MENU HEADER IMAGE ==== */
.menu-header-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 80px; /* height of sticky header */
}

/* ==== BREADCRUMBS ==== */
.breadcrumbs {
    margin: 15px 30px;
    font-size: 0.95rem;
}
.breadcrumbs a {
    color: #377572;
    text-decoration: none;
}
.breadcrumbs span {
    margin: 0 6px;
}
/* ==============================
   TABS
================================ */
.catering-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
}

.catering-tab {
    background: #eee;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

.catering-tab.active {
    background: #234F4D;
    color: #fff;
}

/* ==============================
   TAB CONTENT GRID
================================ */
.tab-content {
    display: none;
    padding: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.tab-content.active {
    display: grid;
}

/* ==============================
   MENU ITEM CARD
================================ */
.menu-item-card {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

.menu-item-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
}

.menu-item-card h4 {
    margin: 10px 0 6px;
    font-size: 16px;
    font-weight: 600;
}

.menu-prices {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}

/* ==============================
   BREAD / SOUP / SINGLE PRICE
================================ */
.menu-single-price {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    margin-top: 6px;
}

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

.lightbox-overlay.active {
    display: flex;
}

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

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

/* ==============================
   FLOATING CTA
================================ */
/* ==== 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;
}
.floating-cta a:hover {
    background: #377572;
    color: #fff;
}



/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        margin: 6px 10px;
    }

    .menu-item-card img {
        height: auto;
        max-height: 220px;
    }

    .tab-content {
        padding: 15px;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .catering-tabs {
        justify-content: center;
    }
}
