/* ==========================================================
   55teyiz - Müşteri Menü Stilleri
   Mobil-first, profesyonel altın / sıcak kahve paleti
   ========================================================== */

/* --------- Renk Paleti --------- */
:root {
    --bg-1: #1a100a;           /* çok koyu kahve */
    --bg-2: #241710;           /* kart arka plan */
    --bg-3: #2f1f15;           /* derin kahve */
    --surface: #2a1d12;        /* ana yüzey */
    --surface-hover: #3a2a1d;
    --gold: #c9a15b;           /* şampanya altın */
    --gold-bright: #e0be7e;    /* parlak altın */
    --gold-dim: #8b6f3f;       /* sönük altın */
    --text: #f3e9d7;           /* krem beyaz */
    --text-dim: #b8a78e;       /* sönük krem */
    --text-muted: #8a7a63;     /* gri-kahve */
    --border: rgba(201, 161, 91, 0.18);
    --border-soft: rgba(201, 161, 91, 0.1);
    --shadow-lg: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --radius: 18px;
    --radius-sm: 12px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------- Reset --------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-1);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 80px;
    background-image:
        radial-gradient(ellipse at 0% 0%, rgba(201, 161, 91, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 100% 100%, rgba(201, 161, 91, 0.03) 0%, transparent 60%);
}

img { display: block; max-width: 100%; height: auto; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
    position: relative;
    padding: 40px 20px 32px;
    text-align: center;
    background:
        linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201, 161, 91, 0.18) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero__inner { position: relative; z-index: 1; }

.hero__logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--bg-3);
    box-shadow: 0 0 0 2px var(--gold-dim), 0 0 40px rgba(201, 161, 91, 0.25);
    padding: 6px;
    overflow: hidden;
}
.hero__logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

.hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 7vw, 2.75rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--gold-bright);
    text-shadow: 0 2px 20px rgba(201, 161, 91, 0.3);
    margin-bottom: 8px;
}

.hero__tagline {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.02em;
    max-width: 420px;
    margin: 0 auto;
}

.hero__meta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero__meta-item svg { color: var(--gold); flex-shrink: 0; }

/* ==========================================================
   KATEGORİ NAV (sticky)
   ========================================================== */
.cat-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(26, 16, 10, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cat-nav__scroll {
    display: flex;
    gap: 10px;
    padding: 14px 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    max-width: 860px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}
.cat-nav__scroll::-webkit-scrollbar { display: none; }

.cat-nav__chip {
    flex-shrink: 0;
    padding: 8px 18px;
    background: transparent;
    color: var(--text-dim);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s var(--ease);
    user-select: none;
}

.cat-nav__chip:hover {
    color: var(--gold);
    border-color: var(--gold-dim);
}

.cat-nav__chip.is-active {
    background: var(--gold);
    color: var(--bg-1);
    border-color: var(--gold);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(201, 161, 91, 0.3);
}

/* ==========================================================
   MENÜ GÖVDESİ
   ========================================================== */
.menu {
    max-width: 720px;
    margin: 0 auto;
    padding: 8px 16px 20px;
}

.cat-section { padding-top: 32px; margin-bottom: 8px; }

.cat-section__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
    padding: 0 12px;
}

.cat-section__ornament { color: var(--gold); font-size: 0.8rem; opacity: 0.6; }

.cat-section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 5vw, 1.75rem);
    font-weight: 700;
    color: var(--gold-bright);
    letter-spacing: 0.03em;
    text-align: center;
}

/* --------- Kartlar --------- */
.cards { display: flex; flex-direction: column; gap: 14px; }

.card {
    display: flex;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 14px;
    gap: 14px;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    pointer-events: none;
}

.card:hover {
    background: var(--surface-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.card:hover::before { opacity: 1; }

.card__img {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-3);
    border: 1px solid var(--border-soft);
}
.card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.card:hover .card__img img { transform: scale(1.06); }

.card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    justify-content: space-between;
    padding: 2px 0;
}

.card__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}

.card__desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card__price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.card__dots {
    flex: 1;
    border-bottom: 1.5px dotted var(--gold-dim);
    opacity: 0.6;
    min-width: 20px;
    height: 1px;
    align-self: center;
}

.card__price {
    font-weight: 700;
    color: var(--gold-bright);
    font-size: 1.05rem;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.card--no-img .card__body { padding-left: 4px; }

/* ==========================================================
   EMPTY STATE
   ========================================================== */
.empty-state {
    max-width: 420px;
    margin: 80px auto;
    text-align: center;
    padding: 40px 24px;
}
.empty-state__icon { font-size: 3.5rem; margin-bottom: 16px; opacity: 0.6; }
.empty-state p { color: var(--text-dim); font-size: 1.05rem; }
.empty-state__sub { color: var(--text-muted); font-size: 0.85rem; margin-top: 6px; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
    text-align: center;
    padding: 40px 20px 30px;
    margin-top: 40px;
    border-top: 1px solid var(--border-soft);
}
.site-footer__divider { color: var(--gold); margin-bottom: 24px; opacity: 0.5; }

.socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}
.social {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface);
    color: var(--gold);
    border: 1px solid var(--border);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.25s var(--ease);
}
.social:hover { background: var(--gold); color: var(--bg-1); transform: translateY(-2px); }

.site-footer__note {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 10px;
}
.site-footer__copyright { color: var(--text-muted); font-size: 0.75rem; }

/* ==========================================================
   TO-TOP butonu
   ========================================================== */
.to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 46px; height: 46px;
    background: var(--gold);
    color: var(--bg-1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(201, 161, 91, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s var(--ease);
    z-index: 60;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--gold-bright); transform: translateY(-3px); }
.to-top:active { transform: translateY(-1px); }

/* ==========================================================
   RESPONSIVE - Tablet / Desktop iyileştirmeleri
   ========================================================== */
@media (min-width: 640px) {
    .hero { padding: 60px 20px 44px; }
    .hero__logo { width: 140px; height: 140px; }
    .card { padding: 18px; gap: 18px; }
    .card__img { width: 130px; height: 130px; }
    .card__name { font-size: 1.2rem; }
    .card__desc { font-size: 0.88rem; }
    .card__price { font-size: 1.15rem; }
}

@media (min-width: 900px) {
    .menu { max-width: 860px; }
    .cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .cat-section__head { justify-content: flex-start; padding: 0; }
    .cat-section__head::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, var(--gold-dim) 0%, transparent 100%);
        margin-left: 14px;
        opacity: 0.5;
    }
}

/* Print: yazdırma için sade versiyon */
@media print {
    body { background: #fff; color: #000; }
    .cat-nav, .to-top, .socials { display: none !important; }
    .card { break-inside: avoid; border: 1px solid #ccc; background: #fff; }
    .card__name, .card__price, .cat-section__title, .hero__title { color: #000 !important; }
}
