/* ============ DEĞİŞKENLER (Lacivert / Altın — Profesyonel) ============ */
:root {
  --bg: #112a45;          /* ana lacivert */
  --bg-2: #0d2038;        /* koyu lacivert (alt bölümler) */
  --panel: #16324f;       /* kartlar */
  --gold: #cBA25a;        /* altın */
  --gold: #c9a24b;
  --gold-2: #e2c47b;      /* açık altın */
  --cream: #f3ece0;       /* krem metin */
  --muted: #a6b6c8;       /* soluk mavi-gri */
  --line: rgba(201, 162, 75, 0.30);
  --deep: #091729;        /* footer için en koyu */
  --shadow: 0 20px 50px rgba(4, 12, 24, 0.45);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============ BUTONLAR ============ */
.btn {
  display: inline-block; padding: 15px 34px;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  border: 1px solid transparent; transition: all 0.3s ease; border-radius: 2px;
}
.btn--gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #16233a; font-weight: 600; }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201, 162, 75, 0.35); }
.btn--ghost { border-color: var(--gold); color: var(--gold-2); background: transparent; }
.btn--ghost:hover { background: var(--gold); color: #16233a; }
.btn--full { width: 100%; border: none; }

/* ============ NAVBAR ============ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 0; transition: all 0.35s ease; background: transparent; }
.nav.scrolled { background: rgba(9, 23, 41, 0.96); padding: 12px 0; box-shadow: 0 8px 30px rgba(0,0,0,0.45); border-bottom: 1px solid var(--line); }
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-sub { font-size: 0.68rem; letter-spacing: 5px; color: var(--gold-2); text-transform: uppercase; }
.nav__logo-main { font-family: var(--serif); font-size: 1.55rem; font-weight: 700; letter-spacing: 4px; color: var(--cream); }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream); position: relative; padding: 4px 0; transition: color 0.25s; }
.nav__links a:not(.nav__cta)::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.nav__links a:not(.nav__cta):hover { color: var(--gold-2); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { border: 1px solid var(--gold); color: var(--gold-2) !important; padding: 9px 22px !important; border-radius: 2px; transition: all 0.3s; }
.nav__cta:hover { background: var(--gold); color: #16233a !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 26px; height: 2px; background: var(--cream); transition: all 0.3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 120px 0 80px; }
.hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 32%, #1a3a5e 0%, #112a45 48%, #091729 100%); }
.hero__bg::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(201, 162, 75, 0.08) 1px, transparent 1px); background-size: 24px 24px; opacity: 0.6; }
.hero__overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 45%, rgba(9, 23, 41, 0.65) 100%); }
.hero__content { position: relative; z-index: 2; max-width: 760px; padding: 0 24px; }
.hero__logo { width: min(380px, 76vw); margin: 0 auto 30px; border-radius: 10px; box-shadow: 0 18px 50px rgba(0,0,0,0.55); border: 1px solid var(--line); }
.hero__eyebrow { font-size: 0.85rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-2); margin-bottom: 22px; font-weight: 500; }
.hero__eyebrow::before, .hero__eyebrow::after { content: "—"; margin: 0 12px; opacity: 0.6; }
.hero__desc { font-size: clamp(1rem, 2.2vw, 1.16rem); color: var(--muted); margin-bottom: 38px; }
.hero__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll span { display: block; width: 22px; height: 36px; border: 2px solid var(--gold); border-radius: 12px; position: relative; }
.hero__scroll span::before { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: var(--gold); border-radius: 2px; animation: scroll 1.6s infinite; }
@keyframes scroll { 0% { opacity: 0; top: 7px; } 50% { opacity: 1; } 100% { opacity: 0; top: 18px; } }

/* ============ SECTION GENEL ============ */
.section { max-width: 1200px; margin: 0 auto; padding: 110px 28px; }
.section--dark { max-width: 100%; background: var(--bg-2); }
.section--dark > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section__head { text-align: center; margin-bottom: 60px; }
.section__eyebrow { font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-2); margin-bottom: 12px; font-weight: 500; }
.section__title { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 5vw, 3.2rem); color: var(--cream); }
.section__divider { width: 70px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 20px auto 0; }
.section__note { color: var(--muted); margin-top: 18px; font-size: 0.95rem; }

/* ============ HAKKIMIZDA ============ */
.about { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.about__text p { margin-bottom: 18px; color: #d7ddca; font-size: 1.05rem; }
.about__text p:first-child::first-letter { font-family: var(--serif); font-size: 2.6rem; color: var(--gold-2); float: left; line-height: 1; margin: 4px 12px 0 0; }
.about__badge { display: inline-block; margin-top: 8px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 30px; color: var(--gold-2); font-size: 0.82rem; letter-spacing: 1px; }
.about__stats { display: flex; flex-direction: column; gap: 22px; }
.stat { background: var(--panel); border: 1px solid var(--line); padding: 26px 30px; text-align: center; border-radius: 4px; box-shadow: var(--shadow); }
.stat__num { display: block; font-family: var(--serif); font-size: 1.7rem; color: var(--gold-2); font-weight: 700; }
.stat__label { display: block; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ============ MENÜ ============ */
.menu { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 70px; }
.menu__cat { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-2); font-weight: 700; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.menu__item { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 0; }
.menu__name { font-size: 1.05rem; color: #e6dcc9; font-weight: 400; }
.menu__star { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.5px; color: #16233a; background: linear-gradient(135deg, var(--gold), var(--gold-2)); padding: 3px 10px; border-radius: 20px; white-space: nowrap; text-transform: uppercase; }
.menu__item--star { gap: 12px; }
.menu__thumb { width: 44px; height: 44px; object-fit: cover; border-radius: 6px; border: 1px solid var(--line); flex-shrink: 0; }
.menu__item--star .menu__name { flex: 1; }
.menu__item--star .menu__star { margin-left: 0; }
.menu__showcase { margin: 56px auto 0; max-width: 760px; text-align: center; }
.menu__showcase img { width: 100%; border-radius: 6px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.menu__showcase figcaption { margin-top: 16px; font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--gold-2); }

/* ============ GALERİ ============ */
.gallery-banner { margin: 0 0 22px; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; }
.gallery-banner { max-width: 780px; margin-left: auto; margin-right: auto; }
.gallery-banner img { width: 100%; height: auto; display: block; }
.gallery-banner figcaption { position: absolute; left: 0; bottom: 0; width: 100%; padding: 30px 22px 16px; color: var(--cream); font-family: var(--serif); font-size: 1.25rem; letter-spacing: 1px; background: linear-gradient(transparent, rgba(6,15,27,0.9)); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery__item { aspect-ratio: 1 / 1; background: var(--panel); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; position: relative; margin: 0; box-shadow: var(--shadow); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 14px; font-size: 0.85rem; letter-spacing: 0.5px; color: var(--cream); text-align: left; background: linear-gradient(transparent, rgba(6, 15, 27, 0.9)); opacity: 0; transform: translateY(10px); transition: all 0.35s ease; }
.gallery__item:hover .gallery__cap { opacity: 1; transform: none; }

/* ============ REZERVASYON ============ */
.rez { max-width: 720px; margin: 0 auto; }
.rez__row { display: flex; gap: 16px; margin-bottom: 16px; }
.rez__row > * { flex: 1; }
.rez input, .rez textarea { width: 100%; padding: 15px 18px; background: var(--panel); border: 1px solid var(--line); color: var(--cream); font-family: var(--sans); font-size: 0.98rem; border-radius: 3px; }
.rez input::placeholder, .rez textarea::placeholder { color: #7f92a6; }
.rez input:focus, .rez textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.15); }
.rez textarea { margin-bottom: 20px; resize: vertical; }

/* ============ İLETİŞİM ============ */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact__info { display: flex; flex-direction: column; gap: 26px; }
.contact__item { border-left: 2px solid var(--gold); padding-left: 20px; }
.contact__label { display: block; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-2); margin-bottom: 6px; }
.contact__val { font-size: 1.05rem; color: #e6dcc9; }
.contact__val a { transition: color 0.2s; }
.contact__val a:hover { color: var(--gold-2); }
.contact__val small { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.5px; }
.contact__map { min-height: 340px; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); }
.contact__map iframe { display: block; width: 100%; height: 100%; min-height: 340px; }

/* ============ FOOTER ============ */
.footer { text-align: center; padding: 50px 28px; background: var(--deep); border-top: 3px solid var(--gold); color: #c7d2df; }
.footer__logo { font-family: var(--serif); font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 10px; color: var(--cream); }
.footer__logo strong { color: var(--gold-2); }
.footer__social { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin: 6px 0 18px; }
.footer__social a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1px solid var(--line); border-radius: 30px; color: var(--gold-2); font-size: 0.85rem; letter-spacing: 0.5px; transition: all 0.25s ease; }
.footer__social a:hover { background: var(--gold); color: #16233a; border-color: var(--gold); }
.footer__addr { color: var(--muted); font-size: 0.9rem; margin-bottom: 8px; }
.footer__addr a { color: var(--gold-2); }
.footer__copy { color: #6d7f92; font-size: 0.82rem; }

/* ============ WHATSAPP ============ */
.wa { position: fixed; bottom: 24px; right: 24px; z-index: 90; display: flex; align-items: center; gap: 0; background: #25d366; color: #fff; padding: 14px; border-radius: 50px; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); transition: all 0.3s ease; overflow: hidden; }
.wa__label { max-width: 0; opacity: 0; white-space: nowrap; font-weight: 500; transition: all 0.35s ease; }
.wa:hover { padding-right: 20px; }
.wa:hover .wa__label { max-width: 120px; opacity: 1; margin-left: 10px; }

/* ============ MOBİL ============ */
@media (max-width: 860px) {
  .nav__burger { display: flex; }
  .nav__links { position: fixed; top: 0; right: -100%; height: 100vh; width: 78%; max-width: 320px; flex-direction: column; justify-content: center; gap: 30px; background: rgba(9, 23, 41, 0.98); transition: right 0.4s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.4); }
  .nav__links.open { right: 0; }
  .nav__links a { font-size: 1rem; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__stats { flex-direction: row; flex-wrap: wrap; }
  .about__stats .stat { flex: 1; min-width: 130px; }
  .menu { grid-template-columns: 1fr; gap: 24px 0; }
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .gallery__cap { opacity: 1; transform: none; font-size: 0.72rem; padding: 16px 8px 8px; }
  .contact { grid-template-columns: 1fr; }
  .rez__row { flex-direction: column; }
  .section { padding: 80px 22px; }
  .wa__label { display: none; }
}
@media (max-width: 460px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; }
}
