/* İnteraktif VIP — marka: siyah + gri + sıcak amber vurgu, düşük doygunluk, yüksek kontrast */
:root {
    --ink: #0b0b0c;
    --ink-soft: #16171a;
    --line: #26282d;
    --paper: #ffffff;
    --paper-soft: #f6f6f7;
    --text: #1c1d20;
    --text-muted: #6b6e76;
    --text-on-dark: #e9e9ea;
    --text-on-dark-muted: #9a9ca3;
    --accent: #c8963e;
    --accent-hover: #dcab52;
    --radius: 4px;
    --wrap: 1200px;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--paper);
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--text-muted); }
.small { font-size: .875rem; }
ul.plain { list-style: none; margin: 0; padding: 0; }
ul.plain li { margin-bottom: .4rem; }

/* ---------- başlık ---------- */
.site-header {
    background: var(--ink);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 50;
}
.site-header .container { display: flex; align-items: center; gap: 1.5rem; min-height: 92px; }
.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand img { height: 76px; width: auto; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-line1 {
    font-size: 1.24rem; font-weight: 800; letter-spacing: .045em; color: var(--accent);
}
.brand-line2 {
    font-size: .8rem; font-weight: 600; letter-spacing: .19em;
    color: var(--text-on-dark-muted); margin-top: .2rem;
}
.brand:hover .brand-line1 { color: var(--accent-hover); }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.75rem; }
.site-nav ul { list-style: none; display: flex; gap: 1.4rem; margin: 0; padding: 0; }
.site-nav a { color: var(--text-on-dark); font-size: .93rem; letter-spacing: .01em; padding: .35rem 0; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a.is-active { color: var(--accent); border-bottom-color: var(--accent); }

.lang-switch { display: flex; gap: .5rem; padding-left: 1.25rem; border-left: 1px solid var(--line); }
.lang-switch a, .lang-switch span { font-size: .78rem; font-weight: 600; letter-spacing: .06em; color: var(--text-on-dark-muted); }
.lang-switch a:hover, .lang-switch a.is-active { color: var(--accent); }
/* Çevirisi olmayan dil tıklanamaz — yarım sayfa yayınlanmıyor */
.lang-switch .lang-off { opacity: .32; cursor: not-allowed; }

.header-actions { display: none; align-items: center; gap: .6rem; margin-left: auto; }
.nav-toggle { background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-on-dark); margin: 5px 0; transition: .2s; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 68vh; display: grid; place-items: center; text-align: center; color: #fff; background: var(--ink); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: saturate(.75) contrast(1.05); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,12,.55), rgba(11,11,12,.82)); }
.hero-inner { position: relative; padding: 5rem 20px; max-width: 860px; }
.hero h1 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); font-weight: 700; letter-spacing: -.02em; margin: 0 0 1rem; }
.hero p { font-size: clamp(1rem, 1.7vw, 1.2rem); color: #d7d8db; margin: 0 auto 2rem; max-width: 640px; }

.btn { display: inline-block; padding: .8rem 1.7rem; border-radius: var(--radius); font-weight: 600; font-size: .95rem; border: 1px solid transparent; transition: .15s; }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--accent-hover); color: var(--ink); }
.btn-ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-row { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ---------- bölümler ---------- */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--paper-soft); }
.section-title { text-align: center; margin-bottom: 2.75rem; }
.section-title h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 700; letter-spacing: -.01em; margin: 0 0 .5rem; }
.section-title .rule { width: 48px; height: 3px; background: var(--accent); margin: 0 auto; }

.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card { background: var(--paper); border: 1px solid #e6e7e9; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.card-body { padding: 1.25rem 1.35rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card h3 { font-size: 1.06rem; font-weight: 700; margin: 0 0 .6rem; }
.card p { color: var(--text-muted); font-size: .93rem; margin: 0 0 1rem; }
.card .more { margin-top: auto; font-size: .88rem; font-weight: 600; color: var(--accent); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .5rem; }
.gallery-grid img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; border-radius: 2px; }

.ref-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; align-items: center; }
.ref-grid img { filter: grayscale(1); opacity: .72; transition: .2s; margin: 0 auto; max-height: 76px; width: auto; }
.ref-grid img:hover { filter: none; opacity: 1; }

.quote { background: var(--paper); border: 1px solid #e6e7e9; border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 1.4rem 1.5rem; }
.quote p { margin: 0 0 .9rem; font-size: .95rem; }
.quote cite { font-style: normal; font-weight: 600; font-size: .88rem; }

/* ---------- içerik sayfası ---------- */
.page-head { background: var(--ink); color: #fff; padding: 3.5rem 0; }
.page-head h1 { margin: 0; font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 700; }
.prose { max-width: 760px; margin: 0 auto; padding: 3.5rem 20px; }
.prose h2 { font-size: 1.3rem; font-weight: 700; margin: 2.2rem 0 .8rem; }
.prose p { margin: 0 0 1.1rem; }
.prose ul { padding-left: 1.2rem; margin: 0 0 1.1rem; }
.prose li { margin-bottom: .45rem; }

/* ---------- alt bilgi ---------- */
.site-footer { background: var(--ink); color: var(--text-on-dark); padding: 3.5rem 0 1.5rem; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 2.5rem; }
.site-footer h5 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .09em; margin: 0 0 1rem; }
.site-footer a { color: var(--text-on-dark-muted); font-size: .92rem; }
.site-footer a:hover { color: var(--accent); }
.site-footer .muted { color: var(--text-on-dark-muted); font-size: .9rem; }
.footer-logo { height: 88px; width: auto; margin-bottom: 1rem; }
.tursab { max-width: 130px; background: #fff; padding: .4rem; border-radius: 2px; }
.social { display: flex; gap: 1rem; margin-top: .75rem; font-size: .88rem; }
.copyright { border-top: 1px solid var(--line); margin-top: 2.5rem; padding-top: 1.25rem; }
.copyright p { margin: 0; color: var(--text-on-dark-muted); font-size: .85rem; }

/* ---------- yüzen düğmeler ---------- */
.floating-actions { position: fixed; right: 18px; bottom: 18px; display: flex; flex-direction: column; gap: .55rem; z-index: 60; }
.fab { padding: .7rem 1.1rem; border-radius: 999px; font-size: .87rem; font-weight: 600; box-shadow: 0 6px 20px rgba(0,0,0,.22); }
.fab-wa { background: #25d366; color: #06331a; }
.fab-tel { background: var(--accent); color: var(--ink); }
.fab:hover { color: inherit; transform: translateY(-1px); }

/* ---------- mobil ---------- */
@media (max-width: 900px) {
    .header-actions { display: flex; }
    .brand { gap: .5rem; }
    .brand img { height: 60px; }
    .brand-line1 { font-size: .96rem; letter-spacing: .03em; }
    .brand-line2 { font-size: .64rem; letter-spacing: .14em; }
    .site-nav {
        /* Başlığa göre konumlanıyor: yükseklik değişince sabit bir piksel
           değerini güncellemek gerekmiyor. Başlık sticky, yani konumlanmış
           bir kap; absolute çocuk ona tutunuyor. */
        position: absolute; top: 100%; left: 0; right: 0; background: var(--ink);
        flex-direction: column; align-items: stretch; gap: 0;
        padding: 1rem 20px 1.5rem; border-bottom: 1px solid var(--line);
        transform: translateY(-120%); transition: transform .22s ease; margin-left: 0;
    }
    .site-nav.is-open { transform: translateY(0); }
    .site-nav ul { flex-direction: column; gap: 0; }
    .site-nav ul li { border-bottom: 1px solid var(--line); }
    .site-nav ul a { display: block; padding: .85rem 0; border-bottom: 0; }
    /* Mobilde dil seçimi başlıktaki ayrı düğmede; menü içindeki ikinci
       seçici tekrar oluyordu. */
    .lang-switch { display: none; }
    .floating-actions { right: 12px; bottom: calc(var(--consent-h, 0px) + 12px); }
    .fab { padding: .62rem .95rem; font-size: .82rem; }
}

/* ---------- formlar ---------- */
.form-wrap { max-width: 780px; margin: 0 auto; padding: 3rem 20px 4rem; }
.lead { font-size: 1.03rem; color: var(--text-muted); margin: 0 0 2rem; }
.center { text-align: center; }

.booking-form { display: flex; flex-direction: column; gap: 1.15rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field { display: flex; flex-direction: column; }
.field label { font-size: .84rem; font-weight: 600; margin-bottom: .35rem; }
.field .hint { font-weight: 400; color: var(--text-muted); }
.field input, .field select, .field textarea {
    padding: .68rem .8rem; border: 1px solid #d3d5d9; border-radius: var(--radius);
    font: inherit; font-size: .95rem; line-height: 1.4;
    background: #fff; color: var(--text); width: 100%;
}

/* Yerel select, metin kutusuyla aynı dolguyu uygulamıyor ve daha kısa
   görünüyordu. Kendi görünümünü kapatıp ortak yükseklik veriyoruz;
   açılır ok'u arka plan olarak biz çiziyoruz. */
.field input:not([type="checkbox"]),
.field select {
    min-height: 44px;
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.4rem;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236b6e76' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .9rem center;
    background-size: 12px 8px;
}

/* Safari'de datetime-local kendi iç yüksekliğini dayatıyor; hizayı bozmasın. */
.field input[type="datetime-local"] {
    -webkit-appearance: none;
    appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,150,62,.16);
}
.field .mt { margin-top: .5rem; }
.field textarea { resize: vertical; }

.err { color: #b3261e; font-size: .82rem; margin-top: .3rem; display: block; }
.field input.input-validation-error,
.field select.input-validation-error { border-color: #b3261e; }

.alert-error {
    background: #fdecea; border: 1px solid #f4c7c3; color: #8c1d18;
    padding: .8rem 1rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: .92rem;
}

.check { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; }
.check input { margin-top: .25rem; flex: 0 0 auto; width: auto; }
.check.consent { padding: .9rem 1rem; background: var(--paper-soft); border-radius: var(--radius); }

.more-details { border: 1px solid #e0e2e5; border-radius: var(--radius); padding: 0 1rem; }
.more-details summary { cursor: pointer; padding: .85rem 0; font-weight: 600; font-size: .92rem; }
.more-details[open] { padding-bottom: 1.1rem; }
.more-details .field-row, .more-details .check, .more-details .field { margin-bottom: 1rem; }

.btn-lg { padding: .95rem 2rem; font-size: 1rem; align-self: flex-start; }

/* Bal küpü: gerçek kullanıcı görmez, ekran okuyucu atlar, bot doldurur. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.reference { margin: 2rem 0; }
.reference strong { display: block; font-size: 1.35rem; letter-spacing: .04em; margin-top: .25rem; }

@media (max-width: 700px) {
    .field-row { grid-template-columns: 1fr; }
    .btn-lg { align-self: stretch; text-align: center; }
}

/* ---------- galeri filtresi ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2rem; }
.chip {
    border: 1px solid #d3d5d9; background: #fff; border-radius: 999px;
    padding: .45rem 1rem; font: inherit; font-size: .86rem; cursor: pointer; color: var(--text-muted);
}
.chip:hover { border-color: var(--accent); color: var(--text); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.g-item { margin: 0; }

/* ---------- filo ---------- */
.specs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .8rem !important; }
.specs span {
    font-size: .78rem; background: var(--paper-soft); border: 1px solid #e6e7e9;
    border-radius: 999px; padding: .2rem .7rem; color: var(--text-muted);
}
.specs .ok { background: #eef7f0; border-color: #cfe6d6; color: #2c6b41; }
.note { margin-top: 2rem; }

/* ---------- fiyat tablosu ---------- */
.table-scroll { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.price-table th, .price-table td { padding: .8rem 1rem; border-bottom: 1px solid #e6e7e9; text-align: left; }
.price-table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); }
.price-table .num { text-align: right; white-space: nowrap; }
.price-table .num span { display: block; }
.empty-state { text-align: center; max-width: 560px; margin: 0 auto; padding: 2rem 0; }

/* ---------- iletişim ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info h2, .contact-form h2 { font-size: .82rem; text-transform: uppercase; letter-spacing: .09em; color: var(--text-muted); margin: 0 0 .5rem; }
.contact-info h2 + p { margin: 0 0 1.5rem; }
.contact-form h2 { margin-bottom: 1.25rem; }
.mt { margin-top: 1.5rem; }
.alert-ok {
    background: #eef7f0; border: 1px solid #cfe6d6; color: #2c6b41;
    padding: .9rem 1rem; border-radius: var(--radius); font-size: .93rem;
}

@media (max-width: 820px) {
    .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- çerez bandı ---------- */
.consent-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    background: var(--ink); color: var(--text-on-dark);
    border-top: 1px solid var(--line);
    padding: 1rem 20px; display: flex; align-items: center; gap: 1.5rem;
    flex-wrap: wrap; justify-content: center;
}
.consent-bar p { margin: 0; font-size: .88rem; max-width: 720px; }
.consent-bar a { color: var(--accent); text-decoration: underline; }
.consent-bar form { display: flex; gap: .5rem; flex-shrink: 0; }
.consent-bar button {
    padding: .55rem 1.2rem; border-radius: var(--radius); border: 1px solid transparent;
    background: var(--accent); color: var(--ink); font: inherit; font-weight: 600;
    font-size: .87rem; cursor: pointer;
}
.consent-bar button.ghost { background: transparent; border-color: rgba(255,255,255,.35); color: var(--text-on-dark); }
.consent-bar button.ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Bant yüksekliği metne ve dile göre değişiyor; sabit bir offset tahmini
   tutmuyordu. Gerçek yükseklik site.js'te ölçülüp --consent-h'ye yazılıyor. */
.floating-actions { bottom: calc(var(--consent-h, 0px) + 18px); }

@media (max-width: 700px) {
    .consent-bar { flex-direction: column; gap: .85rem; text-align: center; padding: 1rem 16px 1.15rem; }
}

/* ---------- alt bilgi simgeleri ---------- */
.social { gap: .6rem; margin-top: 1rem; }
.social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%;
}
.social a:hover { border-color: var(--accent); }
.social svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social svg .fill { fill: currentColor; stroke: none; }

/* ---------- telefon alt çubuğu ---------- */
/* Eski sitedeki WhatsApp | Instagram | Hemen Ara çubuğu, sitenin siyah-amber
   paletinde. Telefonda yüzen düğmelerin yerini alıyor; daha geniş ekranda gizli. */
.mobile-bar { display: none; }
@media (max-width: 700px) {
    .floating-actions { display: none; }
    .mobile-bar {
        display: flex; position: fixed; left: 0; right: 0; z-index: 75;
        bottom: var(--consent-h, 0px);          /* çerez bandı açıksa onun üstünde */
        background: var(--ink); border-top: 1px solid var(--accent);
        padding-bottom: env(safe-area-inset-bottom);
        box-shadow: 0 -6px 18px rgba(0,0,0,.28);
    }
    .mobile-bar a {
        flex: 1; display: flex; align-items: center; justify-content: center; gap: .4rem;
        min-height: 54px; font-size: .9rem; font-weight: 600; color: var(--text-on-dark);
    }
    .mobile-bar a + a { border-left: 1px solid var(--line); }
    .mobile-bar a:hover { color: var(--accent); background: var(--ink-soft); }
    .mobile-bar .bar-call { background: var(--accent); color: var(--ink); }
    .mobile-bar .bar-call:hover { background: var(--accent-hover); color: var(--ink); }
    .mobile-bar .emoji { font-size: 1.05rem; line-height: 1; }
    .mobile-bar .brand-icon { width: 22px; height: 22px; flex-shrink: 0; }
    /* Çubuk sayfanın son satırlarını örtmesin */
    body { padding-bottom: calc(54px + env(safe-area-inset-bottom) + var(--consent-h, 0px)); }
}

/* ---------- mobil dil düğmesi ---------- */
.lang-mobile { position: relative; }
.lang-btn {
    display: flex; align-items: center; gap: .3rem;
    background: none; border: 1px solid var(--line); border-radius: 999px;
    padding: .4rem .75rem; cursor: pointer;
    color: var(--accent); font: inherit; font-size: .82rem; font-weight: 700; letter-spacing: .05em;
}
.lang-btn:hover, .lang-btn[aria-expanded="true"] { border-color: var(--accent); }
.lang-btn .caret { font-size: .6rem; opacity: .75; }

.lang-menu {
    position: absolute; right: 0; top: calc(100% + .5rem); z-index: 70;
    list-style: none; margin: 0; padding: .35rem;
    background: var(--ink-soft); border: 1px solid var(--line); border-radius: 6px;
    min-width: 168px; box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.lang-menu li { margin: 0; }
.lang-menu a, .lang-menu .lang-off {
    display: flex; align-items: center; gap: .6rem;
    padding: .55rem .7rem; border-radius: 4px;
    color: var(--text-on-dark); font-size: .9rem; white-space: nowrap;
}
.lang-menu a:hover { background: rgba(255,255,255,.07); color: var(--accent); }
.lang-menu a.is-active { color: var(--accent); }
.lang-menu .code {
    font-size: .72rem; font-weight: 700; letter-spacing: .06em;
    color: var(--text-on-dark-muted); min-width: 22px;
}
.lang-menu a.is-active .code { color: var(--accent); }
/* Çevirisi olmayan dil tıklanamaz — yarım sayfa yayınlanmıyor */
.lang-menu .lang-off { opacity: .35; cursor: not-allowed; }

/* ---------- blog ---------- */
.head-sub { margin: .6rem 0 0; color: #c9cace; font-size: .95rem; max-width: 640px; }
.back-link { margin: 0 0 .75rem; font-size: .88rem; }
.back-link a { color: var(--accent); }
.post-cover { max-width: 960px; margin: 0 auto; padding: 2.5rem 20px 0; }
.post-cover img { width: 100%; border-radius: var(--radius); }
.card-body time { display: block; margin-bottom: .35rem; }
.card h3 a:hover { color: var(--accent); }
.post-cta {
    margin: 3rem 0 0; padding: 1.5rem; background: var(--paper-soft);
    border-left: 3px solid var(--accent); border-radius: var(--radius);
}
.post-cta p { margin: 0 0 1rem; font-weight: 600; }
