/* ============================================================
   ROTA7 — Kendine Hoş Geldin
   Tasarım sistemi: 60-30-10 (Krem %60 · Koyu Yeşil %30 · Altın %10)
   Renkler logodan türetildi: yeşil #0F332B, altın #CB9C4B
   ============================================================ */

:root {
  /* 60% — zemin */
  --bg: #F6F1E7;
  --surface: #FCF9F3;
  --line: #E6DCC8;
  /* 30% — marka yeşili */
  --green: #0F332B;
  --green-deep: #0A241E;
  --green-soft: #1B5342;
  /* 10% — altın vurgu */
  --gold: #CB9C4B;
  --gold-deep: #8F6D2F;      /* krem zeminde okunur altın */
  --gold-soft: rgba(203, 156, 75, 0.16);
  /* metin */
  --ink: #20302A;
  --muted: #5D6B64;
  --cream-text: #F4EEE1;
  --cream-muted: rgba(244, 238, 225, 0.72);

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(15, 51, 43, 0.10);
  --shadow-soft: 0 4px 14px rgba(15, 51, 43, 0.07);
  --container: 1120px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; }
ul { padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.18; letter-spacing: 0.01em; }

.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }

/* Erişilebilirlik */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--green-deep);
  padding: 0.6rem 1.1rem; border-radius: 0 0 10px 0; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Tipografik yardımcılar ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--gold-deep);
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.on-green .eyebrow, .band .eyebrow { color: var(--gold); }

.section-title { font-size: clamp(1.75rem, 3.6vw, 2.6rem); margin: 0.9rem 0 1rem; }
.section-lead { color: var(--muted); max-width: 58ch; }
.on-green .section-lead { color: var(--cream-muted); }
.center { text-align: center; }
.center .section-lead, .center .eyebrow { margin-inline: auto; }
.center .eyebrow::before { display: none; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.7rem; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--green-deep); }
.btn--gold:hover { background: #d8ab5c; }
.btn--ghost { border-color: rgba(244, 238, 225, 0.55); color: var(--cream-text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline { border-color: var(--green); color: var(--green); }
.btn--outline:hover { background: var(--green); color: var(--cream-text); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--green);
  border-bottom: 1px solid rgba(203, 156, 75, 0.28);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(10, 36, 30, 0.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand img { width: 48px; height: 48px; }
.brand-text {
  font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.14em;
  color: var(--cream-text); font-weight: 600;
}
.brand-text .brand-7 { color: var(--gold); }

.main-nav ul { display: flex; gap: 1.9rem; }
.main-nav a {
  text-decoration: none; color: var(--cream-muted); font-size: 0.93rem; font-weight: 500;
  letter-spacing: 0.04em; padding: 0.4rem 0; position: relative; transition: color 0.18s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.22s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--cream-text); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.lang-switch {
  text-decoration: none; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--gold); border: 1.5px solid rgba(203, 156, 75, 0.55);
  padding: 0.38rem 0.85rem; border-radius: 999px; transition: background 0.18s ease, color 0.18s ease;
}
.lang-switch:hover { background: var(--gold); color: var(--green-deep); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--cream-text);
  margin: 5px 0; border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 140% at 85% 10%, var(--green-soft) 0%, var(--green) 42%, var(--green-deep) 100%);
  color: var(--cream-text);
  padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(4.5rem, 8vw, 6.5rem);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 3rem; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.3rem); font-weight: 600; color: var(--cream-text);
  margin: 1.1rem 0 1.2rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-lead { color: var(--cream-muted); font-size: clamp(1rem, 1.4vw, 1.13rem); max-width: 52ch; margin-bottom: 2.2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-logo { justify-self: center; position: relative; }
.hero-logo img {
  width: clamp(220px, 26vw, 330px); height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}
.hero-gulls { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5; }
.hero-scroll {
  position: relative; z-index: 2; margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex; align-items: center; gap: 1rem; color: var(--cream-muted); font-size: 0.8rem; letter-spacing: 0.28em; text-transform: uppercase;
}
.hero-scroll::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(203,156,75,.6), transparent); }

/* ---------- Bantlar / bölümler ---------- */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.band { background: var(--green); color: var(--cream-text); }
.band h2, .band h3 { color: var(--cream-text); }

/* İmza: Prag tatlısı */
.signature { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.signature-visual {
  position: relative; aspect-ratio: 4 / 3.4; border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--green-soft), var(--green-deep));
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.signature-visual::before {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(203, 156, 75, 0.45);
  border-radius: calc(var(--radius-lg) - 8px); pointer-events: none;
}
.ph-label {
  position: absolute; bottom: 1.1rem; left: 0; right: 0; text-align: center;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream-muted);
}
.signature-body .section-title { max-width: 16ch; }
.signature-list { margin: 1.4rem 0 2rem; display: grid; gap: 0.85rem; }
.signature-list li { display: flex; gap: 0.8rem; align-items: baseline; color: var(--muted); }
.signature-list li::before { content: "—"; color: var(--gold-deep); font-weight: 600; }

/* Özellik kartları */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.6rem; }
.feature-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.7rem 1.9rem; box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--gold-soft); margin-bottom: 1.2rem;
}
.feature-icon svg { width: 26px; height: 26px; stroke: var(--gold-deep); }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.55rem; }
.feature-card p { color: var(--muted); font-size: 0.95rem; }

/* Menü önizleme */
.menu-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.6rem; }
.menu-col {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
}
.menu-col h3 {
  font-size: 1.05rem; letter-spacing: 0.06em; padding-bottom: 0.8rem; margin-bottom: 0.9rem;
  border-bottom: 1px solid var(--gold); display: flex; justify-content: space-between; align-items: baseline;
}
.menu-col ul { display: grid; gap: 0.45rem; }
.menu-col li { color: var(--muted); font-size: 0.93rem; }
.menu-more { margin-top: 2.4rem; text-align: center; }
.band .menu-col { background: rgba(252, 249, 243, 0.06); border-color: rgba(203, 156, 75, 0.3); }
.band .menu-col h3 { color: var(--gold); border-color: rgba(203, 156, 75, 0.5); }
.band .menu-col li { color: var(--cream-muted); }

/* Atmosfer bandı */
.quote-band { text-align: center; padding: clamp(4rem, 8vw, 6rem) 0; position: relative; overflow: hidden; }
.quote-band blockquote {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3.4vw, 2.4rem); font-style: italic;
  max-width: 26ch; margin: 1.2rem auto 1rem; color: var(--cream-text);
}
.quote-band cite { font-style: normal; font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }

/* Konum bloğu */
.location { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.info-list { display: grid; gap: 1.1rem; margin: 1.6rem 0 2rem; }
.info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-list svg { width: 20px; height: 20px; flex: none; margin-top: 0.2rem; stroke: var(--gold-deep); }
.info-list strong { display: block; font-weight: 600; }
.info-list span { color: var(--muted); font-size: 0.95rem; }
.map-frame {
  border: 0; width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); filter: saturate(0.85);
}

/* ---------- Sayfa başlığı (iç sayfalar) ---------- */
.page-head {
  background: linear-gradient(155deg, var(--green-soft) 0%, var(--green) 55%, var(--green-deep) 100%);
  color: var(--cream-text); text-align: center;
  padding: clamp(3.2rem, 6vw, 4.8rem) 0;
}
.page-head h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin-top: 0.9rem; }
.page-head p { color: var(--cream-muted); max-width: 56ch; margin: 0.9rem auto 0; }

/* ---------- Menü sayfası ---------- */
.menu-note {
  display: flex; gap: 0.8rem; align-items: flex-start;
  background: var(--gold-soft); border: 1px solid rgba(203, 156, 75, 0.4);
  border-radius: var(--radius); padding: 1rem 1.2rem; margin-bottom: 2.4rem;
  color: var(--gold-deep); font-size: 0.92rem;
}
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.menu-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem 1.8rem; break-inside: avoid;
}
.menu-card > h2 {
  font-size: 1.3rem; display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 1.1rem;
}
.menu-card > h2::after { content: ""; flex: 1; height: 1px; background: var(--gold); opacity: 0.65; }
.menu-items { display: grid; gap: 0.62rem; }
.menu-items li { display: flex; align-items: baseline; gap: 0.6rem; font-size: 0.97rem; }
.menu-items .dots { flex: 1; border-bottom: 1px dotted rgba(93, 107, 100, 0.5); transform: translateY(-4px); }
.menu-items .price { color: var(--gold-deep); font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu-items small { color: var(--muted); display: block; font-size: 0.8rem; }
.menu-card--signature {
  grid-column: 1 / -1; background: var(--green); color: var(--cream-text);
  border: 1px solid var(--green-soft); position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; align-items: center;
}
.menu-card--signature h2 { color: var(--gold); }
.menu-card--signature h2::after { display: none; }
.menu-card--signature p { color: var(--cream-muted); font-size: 0.97rem; max-width: 62ch; }
.signature-badge {
  width: 64px; height: 64px; border-radius: 50%; flex: none;
  border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center;
}
.signature-badge svg { width: 30px; height: 30px; stroke: var(--gold); }

/* ---------- Hakkımızda ---------- */
.story { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.story-body p + p { margin-top: 1.1rem; }
.story-body p { color: var(--ink); }
.story-aside { display: grid; gap: 1.2rem; }
.stat-card {
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: var(--radius); padding: 1.4rem 1.5rem;
}
.stat-card h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.stat-card p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Galeri ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gallery-item {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius);
  overflow: hidden; background: linear-gradient(150deg, var(--green-soft), var(--green-deep));
  display: flex; align-items: center; justify-content: center;
}
.gallery-item::before {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(203, 156, 75, 0.4);
  border-radius: calc(var(--radius) - 5px);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item svg { width: 42px; height: 42px; stroke: rgba(203, 156, 75, 0.8); }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.9rem; box-shadow: var(--shadow-soft);
}
.contact-card + .contact-card { margin-top: 1.3rem; }
.soon-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-deep); background: var(--gold-soft);
  border-radius: 999px; padding: 0.25rem 0.7rem; margin-left: 0.5rem; vertical-align: middle;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: var(--cream-muted); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.9fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; margin-bottom: 1rem; }
.footer-brand img { width: 56px; height: 56px; }
.footer-tagline { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 1.05rem; }
.site-footer h3 {
  color: var(--cream-text); font-family: var(--font-body); font-size: 0.78rem;
  letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600;
}
.site-footer ul { display: grid; gap: 0.55rem; }
.site-footer a { color: var(--cream-muted); text-decoration: none; font-size: 0.93rem; transition: color 0.18s ease; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 2.8rem; padding-top: 1.4rem; border-top: 1px solid rgba(203, 156, 75, 0.22);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.82rem; color: rgba(244, 238, 225, 0.5);
}

/* ---------- 404 ---------- */
.notfound { min-height: 62vh; display: flex; align-items: center; text-align: center; }
.notfound .code { font-family: var(--font-display); font-size: clamp(4.5rem, 12vw, 8rem); color: var(--gold); line-height: 1; }

/* ---------- Reveal animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-lead, .hero h1 { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-logo { order: -1; }
  .hero-logo img { width: clamp(170px, 34vw, 230px); }
  .features, .menu-preview, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .signature, .location, .story, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--green-deep); border-bottom: 1px solid rgba(203, 156, 75, 0.3);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .main-nav.is-open { max-height: 22rem; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 0.8rem 1.4rem 1.4rem; }
  .main-nav a { display: block; padding: 0.75rem 0.2rem; font-size: 1rem; }
  .main-nav a::after { display: none; }
  .nav-toggle { display: block; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card--signature { grid-template-columns: 1fr; }
  .brand img { width: 42px; height: 42px; }
  .brand-text { font-size: 1.15rem; }
}

@media (max-width: 560px) {
  .features, .menu-preview, .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .btn { width: 100%; }
  .hero-cta { flex-direction: column; }
}

/* ---------- Fotoğraflı bölümler ---------- */
.signature-visual--photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.signature-visual--photo::before { z-index: 2; }

.quote-band--photo {
  background-image: linear-gradient(rgba(10, 36, 30, 0.84), rgba(10, 36, 30, 0.84)), url("../assets/galeri/quote-bg.webp");
  background-size: cover; background-position: center;
}

.photo-card {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line);
}
.photo-card img { display: block; width: 100%; height: auto; }

/* Galeri: gerçek fotoğraflar + büyütme */
a.gallery-item { display: block; text-decoration: none; }
.gallery-item { cursor: zoom-in; }
.gallery-item img { transition: transform 0.5s ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.045); }
.gallery-item::before { z-index: 2; pointer-events: none; }

/* Lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(92vw, 1080px); }
.lightbox::backdrop { background: rgba(10, 36, 30, 0.92); }
.lb-inner { position: relative; }
.lb-inner img { display: block; width: 100%; height: auto; border-radius: var(--radius); }
.lb-close {
  position: absolute; top: 0.6rem; right: 0.6rem;
  width: 2.4rem; height: 2.4rem; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(10, 36, 30, 0.75); color: var(--cream-text); font-size: 1.15rem; line-height: 1;
}
.lb-close:hover { background: var(--gold); color: var(--green-deep); }
.lb-caption {
  text-align: center; color: var(--cream-muted); font-size: 0.85rem; padding: 0.7rem 0 0.2rem;
}

/* Martı süzülme animasyonu */
@keyframes gullDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -9px); }
}
.hero-gulls g { animation: gullDrift 11s ease-in-out infinite; }

/* Baskı */
@media print {
  .site-header, .site-footer, .hero-cta, .nav-toggle { display: none; }
  body { background: #fff; color: #000; }
}
