/* classic — temiz kurumsal tema. Şema renkleri: --primary, --accent (inline style).
   Paylaşılan bölüm partial'ları ile çalışır (diğer 9 tema gibi). Görünüm CSS'te; DOM ortak. */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #1e2530; line-height: 1.65; background: #fff; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site { --primary: #1f2937; --accent: #c0392b; }

/* ─── nav (ortak _nav) — marka sol, menü sağ, primary zemin ─── */
.nav {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .9rem 1.5rem;
  background: color-mix(in srgb, var(--primary) 92%, transparent); backdrop-filter: blur(8px);
  color: #fff; position: sticky; top: 0; z-index: 10;
  box-shadow: 0 1px 0 rgba(255,255,255,.08), 0 4px 20px rgba(0,0,0,.15);
}
.nav .brand { font-weight: 800; font-size: 1.15rem; letter-spacing: -.01em; display: flex; align-items: center; }
.nav nav { display: flex; margin-left: auto; }
.nav nav a { margin-left: 1.4rem; opacity: .85; font-weight: 600; font-size: .92rem; }
.nav nav a:hover { opacity: 1; }
.nav-cta { margin-left: 1.4rem; padding: .5rem 1.15rem; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 700; font-size: .88rem; }

/* ─── hero (ortak _hero) — primary gradient veya foto + koyu overlay ─── */
.hero {
  position: relative; min-height: 78vh; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden; padding: 4rem 1.5rem;
  background: linear-gradient(160deg, var(--primary), color-mix(in srgb, var(--primary) 70%, #000));
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero:has(.hero-bg)::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.55)); }
.hero-inner { position: relative; z-index: 1; max-width: 900px; }
.hero .eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: .8rem; font-weight: 700; opacity: .82; margin-bottom: .8rem; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; max-width: 20ch; margin: 0 auto; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero .sub { font-size: 1.15rem; margin-top: 1rem; max-width: 42rem; margin-left: auto; margin-right: auto; opacity: .92; }
.hero .rating { margin-top: .9rem; font-weight: 700; }
.hero .rating .stars { color: #ffd23f; letter-spacing: 2px; }
.hero .rating .dim { opacity: .8; font-weight: 400; }

.cta { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; margin-top: 1.75rem; }
.btn { display: inline-block; padding: .8rem 1.7rem; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 700; font-size: .95rem; box-shadow: 0 4px 14px color-mix(in srgb, var(--accent) 40%, transparent); transition: transform .12s ease, box-shadow .12s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px color-mix(in srgb, var(--accent) 50%, transparent); }
.btn-alt { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); box-shadow: none; }
.btn-alt:hover { background: var(--accent); color: #fff; }
.hero .btn-alt { color: #fff; border-color: rgba(255,255,255,.6); }
.hero .btn-alt:hover { background: rgba(255,255,255,.15); }

/* ─── bölüm iskeleti (ortak .sec/.wrap) ─── */
.sec { padding: 4.5rem 0; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.wrap.narrow { max-width: 720px; }
.sec h2 { text-align: center; font-size: clamp(1.6rem, 3.4vw, 2.2rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 2.5rem; color: var(--primary); }
.sec h2::after { content: ""; display: block; width: 44px; height: 4px; border-radius: 2px; background: var(--accent); margin: .8rem auto 0; }
.sec .eyebrow { text-align: center; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 700; color: var(--accent); margin-bottom: .5rem; }

/* hizmetler (ortak _services .cards/.card) */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.card { position: relative; background: #fff; border: 1px solid #e8ebf0; border-radius: 16px; padding: 1.75rem; box-shadow: 0 2px 12px rgba(15,23,42,.05); transition: transform .15s ease, box-shadow .15s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(15,23,42,.10); }
.card .no { display: none; }
.card .ico { font-size: 2.1rem; margin-bottom: .7rem; display: block; }
.card h3 { color: var(--primary); margin-bottom: .4rem; font-size: 1.05rem; font-weight: 700; }
.card p { color: #5b6472; font-size: .95rem; }

/* fiyat listesi (ortak _menu style=rows) — kesikli, nokta yok */
.sec-menu .wrap { max-width: 660px; }
.menu-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .9rem .25rem; border-bottom: 1px dashed #dfe3e9; }
.menu-dots { display: none; }
.menu-name { font-weight: 600; color: var(--primary); }
.menu-name small { display: block; font-weight: 400; color: #8a93a1; font-size: .85rem; }
.menu-price { color: var(--accent); font-weight: 800; white-space: nowrap; font-variant-numeric: tabular-nums; }

/* galeri (ortak _gallery) */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .9rem; }
.gallery figure img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; transition: transform .2s ease; }
.gallery figure img:hover { transform: scale(1.02); }

/* yorumlar (ortak _reviews .revs/.rev) */
.revs { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.rev { background: #fff; border: 1px solid #e8ebf0; border-radius: 16px; padding: 1.75rem; box-shadow: 0 2px 12px rgba(15,23,42,.05); }
.rev .stars-row { margin-bottom: .5rem; letter-spacing: 2px; }
.rev .stars-row .on { color: #ffb400; }
.rev .stars-row .off { color: #dfe3e9; }
.rev p { font-size: .96rem; color: #3c4450; }
.rev cite { display: block; margin-top: .9rem; color: #8a93a1; font-style: normal; font-weight: 600; font-size: .9rem; }

/* hakkımızda (ortak _about) — hafif zemin */
.sec-about { background: #f7f8fa; }
.sec-about .wrap { text-align: center; }
.about-text { font-size: 1.08rem; color: #4a5261; }

/* randevu (ortak _booking) */
.sec-booking { background: #f7f8fa; }

/* iletişim (ortak _contact .split + hours-card) */
.sec-contact .split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: start; }
.sec-contact .addr { color: #5b6472; margin-bottom: 1.2rem; }
.hours-card h3 { color: var(--primary); margin-bottom: 1rem; font-size: 1.1rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: .65rem .35rem; border-bottom: 1px solid #edf0f4; }
.hours .day { font-weight: 600; }
.hours .hrs { text-align: right; color: #444c58; font-variant-numeric: tabular-nums; }
.hours .hrs.closed { color: var(--accent); font-weight: 600; }
.map { width: 100%; height: 360px; border: 0; border-radius: 16px; margin-top: 2.2rem; box-shadow: 0 4px 18px rgba(15,23,42,.08); }

/* footer (ortak _footer) */
.footer { display: flex; flex-direction: column; align-items: center; gap: .3rem; text-align: center; padding: 2.2rem; background: var(--primary); color: #fff; opacity: .96; font-size: .92rem; }
.footer .brand { color: #fff; font-size: 1.05rem; }

@media (max-width: 600px) {
  .nav { flex-wrap: wrap; }
  .nav nav a { margin: 0 .6rem; }
  .sec { padding: 3rem 0; }
  .sec-contact .split { grid-template-columns: 1fr; }
}

/* ─── karanlık mod (toggle) — nav/hero/footer marka --primary'de kalır ─── */
html[data-mode="dark"] body { background: #0f1116; color: #e6e8ec; }
html[data-mode="dark"] .card, html[data-mode="dark"] .rev { background: #191c22; border-color: #2b303b; box-shadow: 0 2px 10px rgba(0,0,0,.3); }
html[data-mode="dark"] .card p, html[data-mode="dark"] .about-text, html[data-mode="dark"] .rev p { color: #aab0bc; }
html[data-mode="dark"] .card h3 { color: #f0f2f5; }
html[data-mode="dark"] .menu-row { border-bottom-color: #2b303b; }
html[data-mode="dark"] .menu-name { color: #f0f2f5; }
html[data-mode="dark"] .menu-name small { color: #8f96a0; }
html[data-mode="dark"] .hours td { border-bottom-color: #2b303b; }
html[data-mode="dark"] .hours .hrs { color: #c3c8cf; }
html[data-mode="dark"] .rev cite { color: #8f96a0; }
html[data-mode="dark"] .rev .stars-row .off { color: #3a3f4a; }
html[data-mode="dark"] .sec-contact .addr { color: #9aa1aa; }
html[data-mode="dark"] .sec-about, html[data-mode="dark"] .sec-booking { background: #14161b; }
html[data-mode="dark"] .sec h2 { color: color-mix(in srgb, var(--primary) 45%, #ffffff); }
html[data-mode="dark"] .hours-card h3 { color: color-mix(in srgb, var(--primary) 45%, #ffffff); }
