/* ============================================================
   DRANGA — style.css
   Faz 1: mobil öncelikli TEMEL iskelet. Tam tasarım sistemi
   (bileşenler, animasyonlar, fotoğraf blokları) frontend agent
   tarafından bu dosya üzerine genişletilir.
   ============================================================ */

/* ---- Marka tokenları (CLAUDE.md §7.1 — DEĞİŞMEZ) ---- */
:root {
    --ink:    #141414;
    --paper:  #FFFFFF;
    --mist:   #F7F6F3;
    --blue:   #4FA6DE;
    --red:    #D63A56;
    --orange: #EAA23A;
    --muted:  #6b665f;
    --line:   rgba(20, 20, 20, 0.10);

    --font-head: "Poppins", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, monospace;

    --container: 1120px;
    --radius-card: 18px;
    --radius-btn: 11px;

    /* Katman (z-index) tokenları — z-index yalnız bunlarla kullanılır */
    --z-waves: 0;
    --z-base: 1;
    --z-header: 100;
    --z-skip: 1000;
}

/* ---- Temel sıfırlama ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

img, picture, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; margin: 0 0 0.4em; }

/* ---- Yerleşim ---- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
}

/* ---- Erişilebilirlik: içeriğe atla ---- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ink);
    color: var(--paper);
    padding: 10px 16px;
    border-radius: 0 0 8px 0;
    z-index: var(--z-skip);
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* ---- Başlık ---- */
.site-header {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    position: sticky;
    top: 0;
    z-index: var(--z-header);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
}
.site-header__brand,
.site-footer__brand {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 26px;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.site-header__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    cursor: pointer;
}
.site-header__toggle-bar,
.site-header__toggle-bar::before,
.site-header__toggle-bar::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    margin-inline: auto;
    background: var(--ink);
    transition: transform 200ms ease;
}
.site-header__toggle-bar { position: relative; }
.site-header__toggle-bar::before { position: absolute; top: -6px; left: 0; }
.site-header__toggle-bar::after  { position: absolute; top: 6px;  left: 0; }

/* Mobil: menü varsayılan gizli, düğmeyle açılır */
.site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
}
.site-nav.is-open { display: block; }
.site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.site-nav__link {
    display: block;
    padding: 12px 8px;
    font-weight: 500;
    border-radius: 8px;
}
.site-nav__link:hover { background: var(--mist); }
.site-nav__link--cta {
    color: var(--blue);
    font-weight: 600;
}

/* ---- Butonlar ---- */
.btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    transition: transform 200ms ease, background 200ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--ghost   { background: transparent; border-color: var(--line); color: var(--ink); }

/* ---- Hero (iskelet) ---- */
.hero { padding: 64px 0 72px; background: var(--mist); }
.hero__eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 14px;
}
.hero__title { font-size: clamp(40px, 9vw, 68px); font-weight: 800; }
.hero__lead { font-size: 17px; color: var(--muted); max-width: 52ch; margin: 0 0 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }

/* ---- Hata sayfası ---- */
.error-page { padding: 80px 0; text-align: center; }
.error-page__code {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--blue);
    font-size: 14px;
    letter-spacing: 0.1em;
    margin: 0 0 8px;
}
.error-page__title { font-size: clamp(30px, 7vw, 48px); }
.error-page__lead { color: var(--muted); max-width: 46ch; margin: 0 auto 28px; }
.error-page__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---- Altbilgi ---- */
.site-footer { background: var(--ink); color: var(--paper); padding: 56px 0; margin-top: 96px; }
.site-footer__brand { color: var(--paper); }
.site-footer__tagline { color: rgba(255, 255, 255, 0.72); max-width: 42ch; margin: 12px 0 20px; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 24px; }
.site-footer__nav a { color: rgba(255, 255, 255, 0.85); font-weight: 500; }
.site-footer__nav a:hover { color: var(--paper); }
.site-footer__copy {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* ---- Masaüstü ---- */
@media (min-width: 860px) {
    .site-header__toggle { display: none; }
    .site-nav {
        display: block;
        position: static;
        border: 0;
        padding: 0;
        background: transparent;
    }
    .site-nav__list { flex-direction: row; align-items: center; gap: 8px; }
    .site-nav__link { padding: 8px 14px; }
    .hero { padding: 96px 0 110px; }
}

/* ============================================================
   YÖNETİM PANELİ (admin)
   Panel kabuğu + form/liste bileşenleri. Public token'larla uyumlu;
   yalnız .admin gövdesi ve .admin-* blokları altında etkin.
   Mobil öncelikli (390px), dokunmatik hedefler ≥44px.
   ============================================================ */
body.admin {
    background: var(--mist);
    font-family: var(--font-body);
}

.admin-shell { min-height: 100vh; display: flex; flex-direction: column; }

/* Üst şerit */
.admin-top {
    background: var(--ink);
    color: var(--paper);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.admin-top__brand {
    color: var(--paper);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
}
.admin-top__logout { margin: 0; }

.admin-main {
    flex: 1;
    width: 100%;
    max-width: 960px;
    margin-inline: auto;
    padding: 24px 16px 48px;
}

.admin-foot {
    padding: 16px 20px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

/* Sayfa başlığı satırı */
.admin-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.admin-page-head h1 { margin: 0; font-size: clamp(22px, 5vw, 28px); }
.admin-back { display: inline-block; margin: 0 0 8px; font-size: 14px; }

/* Kart */
.admin-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 20px;
    margin: 0 0 20px;
}
.admin-card:last-child { margin-bottom: 0; }
.admin-card--auth { max-width: 420px; margin: 48px auto; padding: 28px; }
.admin-card--danger { border-color: var(--red); }
.admin-card--flush { padding: 0; overflow: hidden; }
.admin-card h1 { margin: 0 0 4px; }
.admin-card p.lead { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.admin-card__title {
    font-family: var(--font-head);
    font-size: 18px;
    margin: 0 0 14px;
}
.admin-card__title--danger { color: var(--red); }
.admin-note { color: var(--muted); margin: 0 0 12px; font-size: 14px; }
.admin-note--flush { margin: 0; }

/* Alan (label + input) */
.admin-field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.admin-field > label { font-size: 13px; font-weight: 600; }
.admin-field input[type="text"],
.admin-field input[type="email"],
.admin-field input[type="password"],
.admin-field input[type="date"],
.admin-field input[type="number"],
.admin-field input[type="file"],
.admin-field textarea,
.admin-field select {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: var(--mist);
    color: var(--ink);
    min-height: 44px;
}
.admin-field textarea { min-height: 92px; resize: vertical; line-height: 1.5; }
.admin-field--code textarea { font-family: var(--font-mono); font-size: 13px; }
.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus {
    outline: 2px solid var(--blue);
    outline-offset: 0;
    background: var(--paper);
}
.admin-field__hint { font-size: 12px; color: var(--muted); }

/* Onay kutuları */
.admin-checks { display: flex; flex-wrap: wrap; gap: 4px 20px; }
.admin-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    min-height: 44px;
}
.admin-check input { width: 20px; height: 20px; }

/* İki sütunlu alan ızgarası */
.admin-grid { display: grid; gap: 0; }

/* Butonlar */
.admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: var(--radius-btn);
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 11px 18px;
    min-height: 44px;
    background: var(--blue);
    color: var(--paper);
    text-decoration: none;
    transition: transform 200ms ease, background 200ms ease;
}
.admin-btn:hover { transform: translateY(-1px); }
.admin-btn--block { width: 100%; }
.admin-btn--ghost {
    background: transparent;
    color: var(--paper);
    border-color: rgba(255, 255, 255, 0.35);
    padding: 8px 14px;
    font-size: 14px;
    min-height: 40px;
}
.admin-btn--danger { background: var(--red); }
.admin-btn--outline-danger {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}
.admin-btn--sm { padding: 8px 12px; font-size: 13px; min-height: 40px; }

/* Uyarı / bilgi kutusu (koyu metin + renkli kenar → erişilebilir kontrast) */
.admin-alert {
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 4px solid var(--red);
    color: var(--ink);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 16px;
}
.admin-alert--success { border-left-color: var(--blue); }

/* Rozet */
.admin-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--muted);
    background: var(--mist);
}
.admin-badge--published { background: var(--blue); color: var(--ink); border-color: transparent; }

/* Liste tablosu — mobilde yığılmış kart, ≥640px'te gerçek tablo */
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
.admin-table tr {
    display: block;
    padding: 12px 14px;
    border-top: 1px solid var(--line);
}
.admin-table tbody tr:first-child { border-top: 0; }
.admin-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 5px 0;
}
.admin-table td::before {
    content: attr(data-label);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    flex: 0 0 auto;
}
.admin-table__title { font-weight: 600; text-align: right; }
.admin-table__action { justify-content: flex-end; }

/* Galeri ızgarası */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
    margin: 0 0 16px;
}
.gallery-item {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: var(--mist);
}
.gallery-item__media { aspect-ratio: 3 / 2; background: var(--line); }
.gallery-item__media img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item__body { padding: 8px 10px 10px; }
.gallery-item__alt {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gallery-item__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}
.gallery-item__order {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
}
.gallery-item__order input {
    width: 60px;
    min-height: 40px;
    padding: 6px 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background: var(--paper);
    color: var(--ink);
}
.gallery-item__delete { margin: 0; }

/* Yükleme önizlemesi (JS ile doldurulur) */
.image-preview { margin: 0 0 4px; }
.image-preview img {
    max-width: 240px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--line);
}
.image-current { margin: 0 0 12px; }
.image-current img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--line);
}

/* SSS öğesi */
.faq-item {
    border-top: 1px solid var(--line);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}
.faq-item:first-of-type { border-top: 0; }
.faq-item__q { font-weight: 600; }
.faq-item__a { margin: 0; color: var(--muted); font-size: 14px; }

/* Buton satırı */
.admin-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }

/* Kart içi ayraç ve alt-form aralığı */
.admin-rule { border: 0; border-top: 1px solid var(--line); margin: 20px 0; }
.admin-subform { margin-top: 16px; }

@media (min-width: 640px) {
    .admin-top { padding: 14px 20px; }
    .admin-top__brand { font-size: 20px; }
    .admin-main { padding: 32px 20px 56px; }
    .admin-card { padding: 28px; }

    .admin-grid--2 { grid-template-columns: 1fr 1fr; column-gap: 16px; }

    .admin-table thead {
        position: static;
        width: auto;
        height: auto;
        clip: auto;
    }
    .admin-table thead tr { background: var(--mist); }
    .admin-table tr { display: table-row; padding: 0; border-top: 0; }
    .admin-table th,
    .admin-table td {
        display: table-cell;
        text-align: left;
        padding: 12px;
        border-top: 1px solid var(--line);
    }
    .admin-table thead th { border-top: 0; }
    .admin-table td::before { content: none; }
    .admin-table__title { text-align: left; }
    .admin-table__action { text-align: right; }
}

/* ============================================================
   ONE-PAGE + DETAY SAYFASI (Faz 5) — marka bileşenleri
   Mobil öncelikli (390px), fotoğraf öncelikli, erişilebilir.
   ============================================================ */

/* İçerik, sabit köşe dalgalarının üstünde kalsın */
#main { position: relative; z-index: var(--z-base); }
.site-footer { position: relative; z-index: var(--z-base); }

/* ---- Marka imzası: sabit köşe dalgaları (dekoratif) ---- */
.brand-waves {
    position: fixed;
    inset: 0;
    z-index: var(--z-waves);
    pointer-events: none;
    overflow: hidden;
}
.brand-waves__corner {
    position: absolute;
    width: 190px;
    height: auto;
    opacity: 0.5;
}
.brand-waves__corner--tl { top: -18px; left: -30px; }
.brand-waves__corner--br { bottom: -18px; right: -30px; transform: rotate(180deg); }

/* Dalga şeridi renkleri — token'lardan (SVG path sınıfları) */
.wave-o { stroke: var(--orange); }
.wave-r { stroke: var(--red); }
.wave-b { stroke: var(--blue); }

/* ---- Bölüm kabuğu ---- */
.section { padding: 72px 0; }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: var(--paper); }
.section__head { max-width: 62ch; margin: 0 0 36px; }
.section__eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 12px;
}
.section--ink .section__eyebrow { color: var(--orange); }
.section__title { font-size: clamp(28px, 6vw, 44px); font-weight: 800; margin: 0 0 14px; }
.section__lead { font-size: 17px; color: var(--muted); margin: 0; }
.section--ink .section__lead { color: rgba(255, 255, 255, 0.75); }

/* ---- Hero şeridi (üç renkli akan şerit) ---- */
.hero { position: relative; overflow: hidden; }
.hero__inner { position: relative; z-index: var(--z-base); }
.hero__ribbon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
}
.hero__ribbon path { stroke-linecap: round; }

/* ---- Etkinlik kartları ---- */
.event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.event-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--paper);
    transition: transform 220ms ease, box-shadow 220ms ease;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(20, 20, 20, 0.10); }
.event-card__media {
    position: relative;
    aspect-ratio: 3 / 2;
    background: linear-gradient(135deg, var(--blue), var(--red) 60%, var(--orange));
}
.event-card__media img { width: 100%; height: 100%; object-fit: cover; }
.event-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
}
.event-card__tag--past { background: var(--ink); color: var(--paper); }
.event-card__body { padding: 18px 18px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.event-card__meta {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0;
}
.event-card__title { font-size: 21px; font-weight: 700; margin: 0; }
.event-card__price { margin: 0; font-weight: 700; color: var(--ink); }
.event-card__foot { margin-top: auto; padding-top: 6px; font-weight: 600; color: var(--ink); }
.event-card__foot::after { content: " →"; }

/* Boş durum */
.empty-note {
    border: 1px dashed var(--line);
    border-radius: var(--radius-card);
    padding: 40px 24px;
    text-align: center;
    color: var(--muted);
}

/* ---- Hakkımızda ---- */
.about__grid { display: grid; gap: 32px; }
.about__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    background: var(--paper);
}
.stat__num { font-family: var(--font-head); font-size: 30px; font-weight: 800; margin: 0; }
.stat__label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 4px 0 0;
}

/* ---- Galeri (montaj) ---- */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.gallery__item {
    margin: 0;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--mist);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }

/* ---- İletişim ---- */
.contact__grid { display: grid; gap: 28px; }
.contact__aside p { color: rgba(255, 255, 255, 0.8); }
.contact__channels { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.contact__channels a { color: var(--paper); font-weight: 600; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 600; }
.field input,
.field textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    background: var(--paper);
    color: var(--ink);
    min-height: 46px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   DETAY SAYFASI
   ============================================================ */
.detail-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, var(--blue), var(--red) 55%, var(--orange));
    overflow: hidden;
}
.detail-hero__media { position: absolute; inset: 0; }
.detail-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.15) 0%, rgba(20, 20, 20, 0.85) 100%);
}
.detail-hero__inner { position: relative; z-index: var(--z-base); color: var(--paper); padding: 40px 0 44px; }
.detail-hero__eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 12px;
}
.detail-hero__title { font-size: clamp(32px, 8vw, 60px); font-weight: 800; margin: 0 0 14px; color: var(--paper); }
.detail-hero__meta {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Bilgi çipleri */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.chip {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.detail { padding: 56px 0 24px; }
.detail__layout { display: grid; gap: 40px; }
.detail__section { margin: 0 0 40px; }
.detail__section:last-child { margin-bottom: 0; }
.detail__heading { font-size: 24px; font-weight: 700; margin: 0 0 16px; }
.detail__body p { margin: 0 0 1em; }

/* Program zaman çizelgesi */
.program { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.program__day {
    border-left: 3px solid var(--blue);
    padding: 2px 0 2px 16px;
}
.program__daytag {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 4px;
}
.program__title { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.program__items { margin: 0; padding-left: 18px; color: var(--muted); display: grid; gap: 4px; }

/* Dahil / hariç */
.inclusions { display: grid; gap: 24px; }
.inclusion__title {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 12px;
}
/* Etiket metni okunur kalsın (ink); renk kodlaması ✓/× işaretlerinde */
.inclusion__title--yes { color: var(--ink); }
.inclusion__title--no { color: var(--red); }
.inclusion__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.inclusion__list li { padding-left: 26px; position: relative; }
.inclusion__list--yes li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.inclusion__list--no li::before { content: "×"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* Detay galerisi */
.detail-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.detail-gallery figure { margin: 0; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; background: var(--mist); }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; }

/* SSS (native details/summary — JS'siz açılır) */
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
    cursor: pointer;
    list-style: none;
    padding: 18px 40px 18px 0;
    font-weight: 600;
    font-size: 17px;
    position: relative;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 16px;
    font-size: 24px;
    font-weight: 400;
    color: var(--ink);
    transition: transform 200ms ease;
}
.faq__item[open] .faq__q::after { content: "–"; }
.faq__a { margin: 0; padding: 0 0 20px; color: var(--muted); }

/* CTA bandı (tekil dramatik blok) */
.cta-band { background: var(--ink); color: var(--paper); border-radius: var(--radius-card); padding: 36px 28px; text-align: center; }
.cta-band__title { font-size: clamp(24px, 5vw, 34px); font-weight: 800; margin: 0 0 10px; color: var(--paper); }
.cta-band__lead { color: rgba(255, 255, 255, 0.78); margin: 0 0 22px; }
.btn--accent { background: var(--red); color: var(--paper); }
.btn--wide { padding: 15px 30px; }

.detail-back { display: inline-block; margin: 8px 0 40px; font-weight: 600; color: var(--muted); }

/* ---- İçerik (yasal/statik) sayfası ---- */
.content-page__inner { max-width: 720px; margin-inline: auto; }
.content-page__title { font-size: clamp(30px, 6vw, 48px); font-weight: 800; margin: 0 0 12px; }
.content-page__updated {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 28px;
}
.prose { color: var(--ink); font-size: 17px; }
.prose p { margin: 0 0 1em; }
.prose p:last-child { margin-bottom: 0; }

/* ---- Scroll-reveal (yalnız JS varken gizle → JS yoksa içerik görünür) ---- */
body.has-js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 250ms ease, transform 250ms ease; }
body.has-js .reveal.is-visible { opacity: 1; transform: none; }

/* ---- Orta ve geniş ekranlar ---- */
@media (min-width: 640px) {
    .section { padding: 96px 0; }
    .event-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__grid { grid-template-columns: repeat(3, 1fr); }
    .detail-gallery { grid-template-columns: repeat(3, 1fr); }
    .inclusions { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
    .section { padding: 120px 0; }
    .event-grid { grid-template-columns: repeat(3, 1fr); }
    .about__grid { grid-template-columns: 1.4fr 1fr; align-items: center; }
    .contact__grid { grid-template-columns: 1fr 1fr; }
    .detail__layout { grid-template-columns: minmax(0, 1fr); max-width: 760px; margin-inline: auto; }
    .cta-band { padding: 56px 40px; }
    .brand-waves__corner { width: 240px; }
}

/* ---- Hareket azaltma tercihi ---- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    body.has-js .reveal { opacity: 1; transform: none; }
}
