/* Değişkenler ve Reset */
:root {
    --primary-color: #b77738; 
    --safari-color: #e0531c; 
    --dark-color: #222522;
    --light-bg: #faf6f0;
    --text-muted: #777;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-color);
    padding-top: 75px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: rgba(255, 255, 255, 0.98);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    margin-left: 30px;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Bölümü */
.hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.45)), url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?q=80&w=1400') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-content h1 span {
    color: #f1c40f;
}

.hero-content p {
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto 25px auto;
    opacity: 0.9;
}

.btn {
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183, 119, 56, 0.4);
}

/* Yatay Kaydırılabilir Filtre Butonları */
.filter-container {
    display: flex;
    justify-content: center;
    padding: 20px;
    gap: 10px;
    position: sticky;
    top: 70px;
    background-color: var(--light-bg);
    z-index: 900;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-container::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 8px 22px;
    border: 1.5px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Menü Kapsayıcı Alanı */
.menu-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px;
}

.menu-section {
    margin-bottom: 50px;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(0,0,0,0.04);
    padding-bottom: 8px;
}

.section-title i {
    color: var(--primary-color);
    margin-right: 10px;
}

.sub-category-title {
    font-size: 18px;
    color: var(--primary-color);
    margin: 20px 0 15px 0;
    font-weight: 600;
}

/* Grid Yapısı */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

/* Menü Kartı Tasarımı */
.menu-item {
    background: var(--white);
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.015);
    position: relative;
}

.menu-item.highlight {
    border-left: 4px solid var(--primary-color);
}

.badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 8px;
    font-weight: 600;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.item-header h3 {
    font-size: 17px;
    font-weight: 600;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
    white-space: nowrap;
}

.price small {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

.menu-item p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Safari Kart Tasarımları */
.safari-info-box {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.safari-card {
    background: #1c1e1b;
    color: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 4px solid #333;
}

.safari-card.popular {
    border-color: var(--safari-color);
}

.pop-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--safari-color);
    padding: 4px 12px;
    font-size: 11px;
    border-radius: 10px;
    font-weight: 600;
}

.safari-time {
    color: var(--safari-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.safari-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 5px 0 10px 0;
}

.safari-card p {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.5;
}

.safari-price {
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

/* Yenilenen Kusursuz Safari Buton Tasarımı */
.safari-btn {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease-in-out;
}

/* Popüler ve Hover Durumları */
.safari-card.popular .safari-btn, .safari-btn:hover {
    background-color: var(--safari-color);
    border-color: var(--safari-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(224, 83, 28, 0.4);
}

/* Footer */
footer {
    text-align: center;
    padding: 35px;
    background-color: var(--dark-color);
    color: #777;
    font-size: 12px;
    margin-top: 40px;
}

footer span {
    color: var(--primary-color);
    font-weight: 500;
}

/* RESPONSIVE (Mobil Düzen) */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 65px;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 75%;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        box-shadow: -10px 0 20px rgba(0,0,0,0.05);
        padding-top: 40px;
    }

    .nav-links li { margin: 20px 0; }
    .nav-links li a { margin-left: 0; font-size: 17px; }
    .burger { display: block; }
    .nav-active { transform: translateX(0%); }

    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

    .hero { height: 40vh; }
    .hero-content h1 { font-size: 28px; }
    .filter-container { justify-content: flex-start; padding-left: 15px; top: 64px;}
    .grid-layout { grid-template-columns: 1fr; }
}