/* =========================================================
   Kanatçı Yusuf — Ana site stil dosyası
   ========================================================= */

:root {
    --ink:        #241a14;
    --ink-soft:   #55483d;
    --cream:      #fbf5eb;
    --cream-2:    #f3e9d7;
    --char:       #1c1410;
    --char-2:     #2a1e17;
    --ember:      #c1440e;
    --ember-dark: #9c3509;
    --gold:       #d79b3c;
    --gold-light: #eec584;
    --line:       rgba(36, 26, 20, 0.1);
    --shadow:     0 20px 50px -20px rgba(28, 20, 16, 0.35);
    --radius:     18px;
    --radius-sm:  10px;
    --serif: 'Fraunces', Georgia, serif;
    --sans:  'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--serif); margin: 0 0 .5em; font-weight: 600; line-height: 1.15; }
p { margin: 0 0 1em; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

::selection { background: var(--ember); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .02em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    white-space: nowrap;
}
.btn-primary { background: var(--ember); color: #fff; box-shadow: 0 12px 24px -10px rgba(193,68,14,.6); }
.btn-primary:hover { background: var(--ember-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: currentColor; color: inherit; }
.btn-outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--char); box-shadow: 0 12px 24px -10px rgba(215,155,60,.55); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: .82rem; }

/* ---------- Topbar ---------- */
.topbar { background: var(--char); color: rgba(251,245,235,.8); font-size: .82rem; }
.topbar-inner { display: flex; align-items: center; gap: 24px; padding: 8px 24px; overflow-x: auto; }
.topbar-item { white-space: nowrap; color: inherit; }
.topbar-item:hover { color: var(--gold-light); }
.topbar-wa { margin-left: auto; color: var(--gold-light); font-weight: 700; }
.topbar-hours { opacity: .8; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251,245,235,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
    flex: none; width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(155deg, var(--ember) 0%, var(--ember-dark) 100%);
    color: var(--gold-light); font-family: var(--serif); font-weight: 700; font-size: 1rem; letter-spacing: .02em;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 18px -8px rgba(193,68,14,.55);
}
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; color: var(--ink); }
.brand-sub { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ember); font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-weight: 600; font-size: .95rem; color: var(--ink-soft); position: relative; padding: 6px 0; }
.main-nav a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
    background: var(--ember); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--ember); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.nav-cta {
    background: var(--ink); color: var(--cream) !important; padding: 10px 20px; border-radius: 999px;
    font-size: .85rem !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--ember); }

.nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); background: transparent; cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); margin: 0 auto; transition: all .25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 92vh; display: flex; align-items: center;
    overflow: hidden; background: var(--char);
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(28,20,16,.55) 0%, rgba(28,20,16,.35) 40%, rgba(28,20,16,.92) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; color: var(--cream); padding: 100px 24px; max-width: 760px; margin: 0 auto; text-align: center; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 999px;
    background: rgba(251,245,235,.1); border: 1px solid rgba(251,245,235,.25);
    font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--gold-light);
    margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: .3em; }
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-lead { font-size: 1.15rem; color: rgba(251,245,235,.85); max-width: 560px; margin: 0 auto 2em; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
    color: rgba(251,245,235,.7); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after {
    content: ''; width: 1px; height: 34px; background: linear-gradient(180deg, rgba(251,245,235,.7), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Section headers ---------- */
.section { padding: 100px 0; }
.section-tight { padding: 60px 0; }
.section-dark { background: var(--char); color: var(--cream); }
.section-cream2 { background: var(--cream-2); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
    display: inline-block; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
    font-weight: 800; color: var(--ember); margin-bottom: 14px;
}
.section-dark .eyebrow { color: var(--gold); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-dark .section-head p { color: rgba(251,245,235,.75); }

/* ---------- About / intro ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-media-tag {
    position: absolute; bottom: -22px; left: -22px; background: var(--gold);
    color: var(--char); padding: 18px 22px; border-radius: var(--radius-sm); font-family: var(--serif);
    font-weight: 700; box-shadow: var(--shadow); max-width: 220px; font-size: .95rem;
}
.about-text .eyebrow { display: block; }
.about-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.about-text p { color: var(--ink-soft); font-size: 1.05rem; }
.about-points { display: grid; gap: 16px; margin: 28px 0 32px; }
.about-point { display: flex; gap: 14px; align-items: flex-start; }
.about-point-index {
    flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--cream-2);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-weight: 700; font-size: 1rem; color: var(--ember);
}
.about-point strong { display: block; font-size: 1rem; }
.about-point span { color: var(--ink-soft); font-size: .92rem; }

/* ---------- Menu cards / grid ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.menu-card {
    background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 30px -18px rgba(36,26,20,.25);
    transition: transform .3s ease, box-shadow .3s ease; position: relative;
    display: flex; flex-direction: column;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.menu-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.menu-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.menu-card:hover .menu-card-media img { transform: scale(1.06); }
.menu-badge {
    position: absolute; top: 14px; left: 14px; background: var(--ember); color: #fff; font-size: .7rem;
    font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
    box-shadow: 0 8px 16px -6px rgba(193,68,14,.6);
}
.menu-play {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(28,20,16,.15); opacity: 0; transition: opacity .25s ease; cursor: pointer;
}
.menu-card-media:hover .menu-play { opacity: 1; }
.play-triangle {
    width: 56px; height: 56px; border-radius: 50%; background: rgba(251,245,235,.92);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 22px -8px rgba(0,0,0,.5); position: relative;
}
.play-triangle::before {
    content: ''; width: 0; height: 0; margin-left: 4px;
    border-style: solid; border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent var(--ember);
}
.menu-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.menu-card-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.menu-card-top h3 { font-size: 1.12rem; margin: 0; }
.menu-price { font-family: var(--serif); font-weight: 700; color: var(--ember); white-space: nowrap; font-size: 1.05rem; }
.menu-card-body p { color: var(--ink-soft); font-size: .92rem; margin: 0; flex: 1; }

/* ---------- Category tabs (menu page) ---------- */
.cat-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 56px; }
.cat-nav a {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 999px;
    border: 1px solid var(--line); font-weight: 700; font-size: .9rem; background: #fff;
    transition: all .2s ease;
}
.cat-nav a:hover, .cat-nav a.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.menu-category { margin-bottom: 76px; scroll-margin-top: 130px; }
.menu-category-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 30px; }
.menu-category-head h2 { font-size: 1.7rem; }
.menu-category-head .line { flex: 1; height: 1px; background: var(--line); }

/* ---------- Mobile category quick-jump (menu page) ---------- */
.cat-fab, .cat-fab-overlay, .cat-fab-panel { display: none; }

@media (max-width: 800px) {
    .cat-nav { display: none; }

    .cat-fab {
        display: flex; align-items: center; justify-content: center;
        position: fixed; bottom: 24px; left: 24px; z-index: 91;
        padding: 15px 24px; border-radius: 999px; border: none;
        background: var(--ink); color: var(--cream); font-family: var(--sans);
        font-weight: 700; font-size: .88rem; letter-spacing: .01em;
        box-shadow: 0 14px 30px -10px rgba(0,0,0,.45); cursor: pointer;
        transition: transform .2s ease, background .2s ease;
        will-change: transform; -webkit-backface-visibility: hidden;
    }
    .cat-fab:active { transform: scale(.95); }
    .cat-fab.open { background: var(--ember); }

    .cat-fab-overlay {
        display: block; position: fixed; inset: 0; background: rgba(20,14,10,.55); z-index: 92;
        opacity: 0; pointer-events: none; transition: opacity .25s ease;
    }
    .cat-fab-overlay.open { opacity: 1; pointer-events: auto; }

    .cat-fab-panel {
        display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 93;
        background: var(--cream); border-radius: 22px 22px 0 0;
        box-shadow: 0 -20px 50px -20px rgba(0,0,0,.4);
        padding: 8px 22px 28px; max-height: 70vh; overflow-y: auto;
        transform: translateY(100%); transition: transform .3s ease;
    }
    .cat-fab-panel::before {
        content: ''; display: block; width: 40px; height: 4px; border-radius: 999px;
        background: var(--line); margin: 10px auto 4px;
    }
    .cat-fab-panel.open { transform: translateY(0); }
    .cat-fab-panel-head {
        display: flex; align-items: center; justify-content: space-between;
        padding: 12px 2px 14px; font-family: var(--serif); font-weight: 700; font-size: 1.1rem;
    }
    .cat-fab-close {
        background: none; border: none; font-size: 1.7rem; line-height: 1; cursor: pointer;
        color: var(--ink-soft); padding: 0 4px;
    }
    .cat-fab-list { display: flex; flex-direction: column; gap: 2px; }
    .cat-fab-list a {
        padding: 14px 6px; border-bottom: 1px solid var(--line);
        font-weight: 600; font-size: .96rem; color: var(--ink);
    }
    .cat-fab-list a:last-child { border-bottom: none; }
    .cat-fab-list a.active { color: var(--ember); }
}

/* ---------- Gallery ---------- */
.gal-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.gal-filters button {
    padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
    font-family: var(--sans); font-weight: 700; font-size: .85rem; cursor: pointer; transition: all .2s ease;
}
.gal-filters button:hover, .gal-filters button.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.gal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 18px; }
.gal-item {
    position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/5; cursor: pointer;
    background: var(--cream-2);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gal-item:hover img { transform: scale(1.08); }
.gal-item .gal-overlay {
    position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(20,14,10,.75) 100%);
    display: flex; align-items: flex-end; padding: 14px; opacity: 0; transition: opacity .25s ease;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { color: #fff; font-weight: 700; font-size: .88rem; }
.gal-item.is-video .gal-play {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; background: rgba(15,10,7,.94); z-index: 1000;
    display: none; align-items: center; justify-content: center; padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner { max-width: 960px; width: 100%; max-height: 88vh; }
.lightbox-inner img, .lightbox-inner video { width: 100%; max-height: 88vh; object-fit: contain; border-radius: 12px; }
.lightbox-close {
    position: absolute; top: 22px; right: 28px; color: #fff; font-size: 2rem; background: none; border: none;
    cursor: pointer; line-height: 1;
}
.lightbox-caption { color: rgba(255,255,255,.75); text-align: center; margin-top: 14px; font-size: .9rem; }

/* ---------- Instagram / CTA band ---------- */
.cta-band {
    background: linear-gradient(135deg, var(--ember) 0%, var(--ember-dark) 100%);
    color: #fff; border-radius: 28px; padding: 56px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin: 0; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 520px; margin: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.cta-band .btn-outline { border-color: rgba(255,255,255,.6); }
.cta-band .btn-outline:hover { background: #fff; color: var(--ember); border-color: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-cards { display: grid; gap: 18px; }
.contact-card {
    background: #fff; border-radius: var(--radius-sm); padding: 20px 24px;
    border-left: 3px solid var(--ember);
    box-shadow: 0 10px 26px -18px rgba(36,26,20,.3);
}
.contact-card h4 {
    margin: 0 0 6px; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em;
    color: var(--ember); font-family: var(--sans); font-weight: 800;
}
.contact-card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: none; width: 100%; height: 360px; }

.form-card { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 8px; }
.form-row input, .form-row textarea {
    width: 100%; padding: 13px 16px; border-radius: 10px; border: 1px solid var(--line);
    font-family: var(--sans); font-size: .95rem; background: var(--cream); color: var(--ink);
}
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.form-row textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: 10px; }
.alert { padding: 14px 18px; border-radius: 10px; font-weight: 600; font-size: .92rem; margin-bottom: 20px; }
.alert-success { background: #e5f4ea; color: #256a3d; }
.alert-error { background: #fbe7e2; color: var(--ember-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--char); color: rgba(251,245,235,.75); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(251,245,235,.1); }
.footer-brand h3 { color: var(--cream); margin: 14px 0 8px; }
.footer-col h4 { color: var(--cream); font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; font-family: var(--sans); }
.footer-col a, .footer-col p { display: block; margin-bottom: 10px; font-size: .9rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(251,245,235,.45); margin-bottom: 2px; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a { border: 1px solid rgba(251,245,235,.25); padding: 8px 16px; border-radius: 999px; font-size: .82rem; font-weight: 700; }
.footer-social a:hover { background: var(--ember); border-color: var(--ember); color: #fff; }
.footer-bottom { padding: 22px 0; text-align: center; font-size: .82rem; color: rgba(251,245,235,.5); }

.whatsapp-float {
    position: fixed; bottom: 26px; right: 26px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 14px 30px -10px rgba(0,0,0,.45); transition: transform .25s ease;
    will-change: transform; -webkit-backface-visibility: hidden;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Misc ---------- */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-row strong { display: block; font-family: var(--serif); font-size: 2.1rem; color: var(--gold); }
.stat-row span { color: rgba(251,245,235,.7); font-size: .88rem; }

.empty-note { text-align: center; color: var(--ink-soft); padding: 40px 0; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
    .main-nav {
        position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 80vw);
        background: var(--cream); flex-direction: column; align-items: flex-start; justify-content: flex-start;
        padding: 100px 32px 32px; gap: 22px; transform: translateX(100%); transition: transform .3s ease;
        box-shadow: -20px 0 50px rgba(0,0,0,.15); z-index: 99;
    }
    .main-nav.open { transform: translateX(0); }
    .nav-toggle { display: flex; }
    .nav-cta { margin-top: 10px; }
    .topbar-hours { display: none; }
    .section { padding: 70px 0; }
    .footer-grid { grid-template-columns: 1fr; padding-bottom: 30px; }
    .cta-band { padding: 40px 24px; }
    .stat-row { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 520px) {
    .hero-content { padding: 70px 20px; }
    .about-media-tag { left: 12px; bottom: -16px; padding: 14px 16px; font-size: .85rem; max-width: 160px; }
}
