/* ========== SULTAN KABAB & GRILL – COMPLETE STYLESHEET ========== */
/* Includes: base, layout, buttons, cards, grids, hero, footer, and clean dropdown navigation */

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #fef7e8;
    color: #2c1810;
    line-height: 1.5;
}

/* ---------- CONTAINER & PAGE SECTIONS ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.page-section {
    background: white;
    border-radius: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    margin-bottom: 2.5rem;
    padding: 2rem;
    scroll-margin-top: 100px;
}

.page-section h1 {
    font-size: 2.2rem;
    color: #b45f2b;
    border-left: 6px solid #e2b13b;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.page-section h2 {
    font-size: 1.8rem;
    color: #b45f2b;
    margin: 1.5rem 0 1rem 0;
}

/* ---------- TYPOGRAPHY & UTILITIES ---------- */
.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0;
}

.badge {
    background: #f0e3d0;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5a3e2b;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    background: #b45f2b;
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    margin: 0.5rem 0.2rem;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 48px;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 1px solid #b45f2b;
    color: #b45f2b;
}

.btn:hover {
    background: #8e451f;
    color: white;
}

.btn-small {
    display: inline-block;
    background: #b45f2b;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* ---------- GRIDS & CARDS (reusable) ---------- */
.grid-2, .guide-grid, .benefits-grid, .food-grid, .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin: 1.5rem 0;
}

.card, .benefit-card, .food-card, .review-card {
    background: #fffaf2;
    border-radius: 24px;
    padding: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid #f0e2d0;
}

.card img, .food-card img {
    width: 100%;
    border-radius: 20px;
    height: 160px;
    object-fit: cover;
    margin-bottom: 0.8rem;
}

/* ---------- MENU ITEMS ---------- */
.menu-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #e2cfb5;
    padding: 0.6rem 0;
}

.offer-highlight {
    background: #fdf1e0;
    border-left: 4px solid #e2b13b;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 16px;
}

/* ---------- HERO IMAGES (global constraint) ---------- */
.hero-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 1.5rem;
}

/* ---------- HEADER & NAVIGATION (clean dropdown, no icons) ---------- */
.site-header {
    background: #1e3a2f;
    color: #f9e0a8;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 600;
}

.logo p {
    font-size: 0.85rem;
    color: #e0cba0;
}

/* Desktop navigation */
.main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 0.8rem;
}

.nav-link, .dropbtn {
    color: #f9e0a8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover, .dropbtn:hover {
    border-bottom-color: #e2b13b;
    color: #ffecb3;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #1e3a2f;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 12px;
    top: 100%;
    left: 0;
    z-index: 1;
    padding: 0.5rem 0;
}

.dropdown-content a {
    color: #f9e0a8;
    padding: 0.6rem 1rem;
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background: rgba(255,255,255,0.1);
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Hamburger (hidden on desktop) */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #f9e0a8;
    margin: 5px 0;
    border-radius: 3px;
}

/* Off-canvas menu (mobile) */
.offcanvas-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: #1e3a2f;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s;
    padding: 80px 20px 20px;
    overflow-y: auto;
}

.offcanvas-menu.open {
    transform: translateX(0);
}

.offcanvas-menu a,
.offcanvas-menu details summary {
    display: block;
    padding: 12px 16px;
    color: #f9e0a8;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1rem;
}

.offcanvas-menu details summary {
    cursor: pointer;
    list-style: none;
}

.offcanvas-menu details summary::-webkit-details-marker {
    display: none;
}

.offcanvas-menu details a {
    padding-left: 32px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ---------- FOOTER ---------- */
footer {
    background: #1e2a24;
    color: #ccba8b;
    text-align: center;
    padding: 2rem;
    font-size: 0.85rem;
    margin-top: 2rem;
}

/* ---------- RESPONSIVE (MOBILE) ---------- */
@media (max-width: 767px) {
    .main-nav {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .container {
        padding: 1rem;
    }
    .page-section {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    .page-section h1 {
        font-size: 1.6rem;
    }
    .page-section h2 {
        font-size: 1.4rem;
    }
    .hero-img {
        max-height: 250px;
    }
    .grid-2, .guide-grid, .benefits-grid, .food-grid, .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    .logo h1 {
        font-size: 1.2rem;
    }
    .logo p {
        font-size: 0.65rem;
    }
}

/* ---------- EXTRA SMALL DEVICES (≤480px) ---------- */
@media (max-width: 480px) {
    .page-section h1 {
        font-size: 1.4rem;
    }
    .hero-img {
        max-height: 200px;
    }
}