﻿:root {
    --bg: #0a0f0a;
    --card: #101810;
    --green: #3a7d44;
    --green2: #56a86a;
    --green3: #7ec98f;
    --gold: #c8922a;
    --gold2: #e8b84b;
    --cream: #f0f5ec;
    --muted: #6b8a6b;
    --accent: #d4431a;
    --border: rgba(86,168,106,0.18);
    --r: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--cream);
    font-family: 'Nunito', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* HEADER */
.hero {
    position: relative;
    background: linear-gradient(160deg, #0d1a0d 0%, #0a0f0a 70%);
    padding: 52px 20px 40px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 90% 60% at 50% -5%, rgba(86,168,106,0.15) 0%, transparent 65%);
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--green2), transparent);
    }

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--green), var(--green2));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.hero-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green3), var(--green2), var(--gold2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 6px;
}

.hero-sub {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    max-width: 220px;
}

    .hero-divider span {
        height: 1px;
        flex: 1;
        background: var(--border);
    }

/* TABS */
.tabs-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,15,10,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 4px;
    padding: 10px 12px;
}

    .tabs::-webkit-scrollbar {
        display: none;
    }

.tab-btn {
    flex-shrink: 0;
    background: transparent;
    border: 1px solid transparent;
    color: var(--muted);
    font-family: 'Nunito', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    padding: 7px 13px;
    border-radius: 30px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.22s;
}

    .tab-btn:hover {
        color: var(--cream);
        border-color: var(--border);
    }

    .tab-btn.active {
        background: linear-gradient(135deg, var(--green), var(--green2));
        color: #fff;
        border-color: transparent;
        font-weight: 700;
        box-shadow: 0 2px 12px rgba(58,125,68,0.4);
    }

/* SECTIONS */
.sections {
    padding: 20px 14px 70px;
    max-width: 600px;
    margin: 0 auto;
}

.section {
    display: none;
    animation: fadeUp 0.3s ease;
}

    .section.visible {
        display: block;
    }

@@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-top: 2px;
}

.section-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(58,125,68,0.25), rgba(58,125,68,0.05));
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cream);
}

/* ITEM CARD */
.item-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
}

    .item-card:hover {
        border-color: rgba(86,168,106,0.45);
        transform: translateY(-1px);
        box-shadow: 0 6px 24px rgba(0,0,0,0.35);
    }

    .item-card.featured {
        border-color: rgba(200,146,42,0.3);
        background: linear-gradient(135deg, rgba(200,146,42,0.06), var(--card));
    }

        .item-card.featured:hover {
            border-color: rgba(200,146,42,0.55);
        }

.card-inner {
    display: flex;
    align-items: stretch;
}

.card-img {
    width: 100px;
    min-height: 90px;
    flex-shrink: 0;
    overflow: hidden;
    background: #0d160d;
    position: relative;
}

    .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

.item-card:hover .card-img img {
    transform: scale(1.06);
}

.card-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, #0d1a10, #0a120a);
}

.card-body {
    flex: 1;
    padding: 13px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    min-width: 0;
}

.item-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.3;
}

.item-desc {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.5;
}

.item-price {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--green3);
    margin-top: 2px;
}

    .item-price span {
        font-size: 11px;
        font-weight: 400;
        color: var(--muted);
    }

/*.item-card.featured .item-price {
    color: var(--gold2);
}*/

/* RAMAZAN ÖZEL KART */
.menu-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 14px;
    background: #0d160d;
}

    .menu-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

.item-card:hover .menu-img img {
    transform: scale(1.04);
}

.menu-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: linear-gradient(135deg, #1a2a1a, #0d160d);
}

.menu-card {
    background: linear-gradient(135deg, rgba(212,67,26,0.1), var(--card));
    border-color: rgba(212,67,26,0.28);
    padding: 18px;
}

    .menu-card:hover {
        border-color: rgba(212,67,26,0.5);
    }

.menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
}

.menu-badge {
    background: linear-gradient(135deg, var(--accent), #e85a28);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.menu-includes {
    list-style: none;
    margin-bottom: 12px;
}

    .menu-includes li {
        font-size: 12.5px;
        color: var(--muted);
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 2px 0;
        line-height: 1.5;
    }

        .menu-includes li::before {
            content: '›';
            color: var(--green2);
            font-size: 16px;
            font-weight: 700;
            line-height: 1;
        }

.menu-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--green3);
}

/* BADGE */
.star-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #0a0f0a;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 28px 16px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 1px;
}

    .footer a {
        color: var(--green2);
        text-decoration: none;
    }

/* SCROLL TOP */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green), var(--green2));
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(58,125,68,0.45);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 200;
}

    .scroll-top.show {
        opacity: 1;
    }
