/* ============================================================
   Akvaryum Park Cafe & Restaurant
   "Akdeniz'de saklı bir gece bahçesi"
   Gece paleti: koyu gece-yeşili · dolunay altını (amber) · akvaryum turkuazı
   ============================================================ */

:root {
  --bg:        #121B19;  /* gece zemin */
  --bg-2:      #1A2725;  /* açık gece bölüm */
  --panel:     #21322D;  /* kart */
  --panel-2:   #16211E;  /* input */
  --text:      #F3ECDD;  /* sıcak krem metin */
  --text-soft: #BEB3A0;
  --amber:     #E8AB4D;  /* dolunay altını (ana aksan) */
  --amber-deep:#C5862E;
  --sea:       #2F8B7E;  /* akvaryum turkuazı */
  --sea-deep:  #123F39;
  --lemon:     #E7C24A;
  --ink-dark:  #1B1409;  /* amber buton üstü metin */
  --line:      rgba(243,236,221,.13);

  --display: "Fraunces", Georgia, serif;
  --body:    "Figtree", system-ui, -apple-system, sans-serif;
  --maxw: 1140px;
  --radius: 14px;
  --shadow: 0 22px 50px -28px rgba(0,0,0,.7);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto} *{animation:none!important;transition:none!important} }

body {
  margin: 0; font-family: var(--body); color: var(--text);
  background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1,h2,h3 { font-family: var(--display); font-weight: 600; line-height: 1.1; margin: 0; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--text); }
.eyebrow { font-family: var(--body); font-weight: 700; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); margin: 0 0 .6rem; }

/* ---------- Üst bar ---------- */
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(18,27,25,.82); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.topbar .wrap { display: flex; align-items: center; gap: 18px; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand-logo { height: 46px; width: auto; display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.nav { display: flex; gap: 20px; align-items: center; }
.nav a { text-decoration: none; font-weight: 600; font-size: .94rem; color: var(--text); position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--amber); transition: width .25s ease; }
.nav a:hover::after, .nav a:focus-visible::after { width: 100%; }
.lang { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang button { border: 0; background: transparent; cursor: pointer; font-family: var(--body); font-weight: 700; font-size: .8rem; padding: 6px 12px; color: var(--text-soft); }
.lang button.is-active { background: var(--amber); color: var(--ink-dark); }

.btn { display: inline-flex; align-items: center; gap: 8px; background: var(--amber); color: var(--ink-dark); text-decoration: none; font-weight: 700; font-size: .95rem; padding: 12px 22px; border-radius: 999px; border: 0; cursor: pointer; transition: transform .15s ease, background .2s ease; }
.btn:hover { background: var(--amber-deep); transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--text); border: 1.5px solid rgba(243,236,221,.5); }
.btn.ghost:hover { background: var(--text); color: var(--bg); }
.btn.sea { background: var(--sea); color: #fff; }
.btn.sea:hover { background: var(--sea-deep); }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; min-height: 90vh; display: flex; align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(10,16,15,.30) 0%, rgba(10,16,15,.55) 55%, rgba(12,19,17,.92) 100%),
    url('img/hero.jpg') center/cover no-repeat;
}
.hero .wrap { position: relative; z-index: 2; padding: 0 24px 120px; max-width: 860px; }
.hero .kicker { display: inline-block; margin-bottom: 16px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; font-size: .8rem; color: var(--amber); }
.hero h1 { font-size: clamp(2.4rem, 6.5vw, 4.6rem); color: #fff; letter-spacing: -.5px; text-shadow: 0 2px 30px rgba(0,0,0,.6); }
.hero .lead { font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: rgba(255,255,255,.92); max-width: 600px; margin: 18px 0 30px; text-shadow: 0 1px 16px rgba(0,0,0,.55); }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.wave { display: block; width: 100%; height: 70px; }
.wave path { fill: var(--bg-2); }
.hero .wave { position: absolute; left: 0; bottom: -1px; z-index: 1; height: 80px; }

section { padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head p { color: var(--text-soft); font-size: 1.05rem; margin: 14px 0 0; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Hikaye ---------- */
.story { background: var(--bg-2); }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.story p { font-size: 1.08rem; color: var(--text-soft); margin: 0 0 18px; }
.story .photo { aspect-ratio: 4/5; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; background: var(--panel); }
.story .photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Dolunay (imza) ---------- */
.moon { position: relative; background:
    radial-gradient(60% 80% at 50% 0%, rgba(232,171,77,.16), transparent 60%), var(--bg); }
.moon-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.moon h2 { color: #fff; }
.moon p { color: var(--text-soft); font-size: 1.08rem; margin: 0 0 22px; }
.moon-photo { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px -30px rgba(232,171,77,.4), var(--shadow); border: 1px solid rgba(232,171,77,.25); }
.moon-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hashtag { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,171,77,.14); color: var(--amber); border: 1px solid rgba(232,171,77,.4); border-radius: 999px; padding: 8px 16px; font-weight: 700; margin-left: 12px; }
.moon-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }

/* ---------- Öne çıkanlar ---------- */
.features { background: var(--bg); }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card { background: var(--panel); border-radius: var(--radius); padding: 30px 26px; border: 1px solid var(--line); }
.card .ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(232,171,77,.16); color: var(--amber); margin-bottom: 16px; }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.3rem; color: #fff; margin-bottom: 8px; }
.card p { margin: 0; color: var(--text-soft); }

/* ---------- Menü önizleme ---------- */
.menu-preview { background: var(--sea-deep); color: var(--text); }
.menu-preview h2 { color: #fff; }
.menu-preview .section-head p { color: rgba(243,236,221,.8); }
.mp-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px 48px; margin-bottom: 40px; }
.mp-item { display: flex; align-items: baseline; gap: 12px; padding: 12px 0; border-bottom: 1px dashed rgba(243,236,221,.2); }
.mp-item .name { font-family: var(--display); font-size: 1.18rem; }
.mp-item .dots { flex: 1; border-bottom: 1px dotted rgba(243,236,221,.3); transform: translateY(-4px); }
.mp-item .price { font-weight: 700; color: var(--amber); white-space: nowrap; }

/* ---------- Galeri ---------- */
.gallery { background: var(--bg); }
.grid-photos { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 180px; grid-auto-flow: dense; gap: 14px; }
.gp { border-radius: 12px; overflow: hidden; position: relative; background: var(--panel); border: 1px solid var(--line); }
.gp.tall { grid-row: span 2; }
.gp.wide { grid-column: span 2; }
.gp img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Yorumlar ---------- */
.reviews { background: var(--bg-2); }

/* ---------- İletişim ---------- */
.contact { background: linear-gradient(180deg, var(--sea-deep), var(--bg)); color: var(--text); }
.contact h2 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-row { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.info-row svg { width: 24px; height: 24px; flex: none; color: var(--amber); margin-top: 3px; }
.info-row b { display: block; font-size: 1.05rem; color: #fff; }
.info-row a { color: var(--text); text-decoration: none; }
.info-row a:hover { text-decoration: underline; }
.info-row span { color: var(--text-soft); }
.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(243,236,221,.1); color: var(--text); transition: background .2s; }
.socials a:hover { background: var(--amber); color: var(--ink-dark); }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- Rezervasyon ---------- */
.booking { background: var(--bg); }
.booking-form { max-width: 720px; margin: 0 auto; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.booking-form .field { margin-bottom: 18px; }
.booking-form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--amber); }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-family: var(--body); font-size: 1rem; background: var(--panel-2); color: var(--text); }
.booking-form textarea { resize: vertical; }
.booking-form input::placeholder, .booking-form textarea::placeholder { color: #8a8273; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(232,171,77,.2); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: .85rem; color: var(--text-soft); text-align: center; margin: 14px 0 0; }

/* ---------- Footer ---------- */
footer { background: #0E1614; color: rgba(243,236,221,.65); padding: 30px 0; text-align: center; font-size: .9rem; }
footer a { color: var(--amber); text-decoration: none; }

/* ============ MENÜ SAYFASI ============ */
.menu-hero { background: var(--sea-deep); color: var(--text); padding: 60px 0 80px; text-align: center; }
.menu-hero h1 { font-size: clamp(2.2rem,6vw,3.6rem); color: #fff; }
.menu-hero p { color: rgba(243,236,221,.82); max-width: 560px; margin: 14px auto 0; }
.menu-body { padding: 70px 0 90px; background: var(--bg); }
.cat { margin-bottom: 54px; }
.cat h2 { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; color: #fff; }
.cat h2::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.dish { display: flex; align-items: baseline; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.dish .name { font-family: var(--display); font-size: 1.25rem; color: var(--text); }
.dish .desc { display: block; font-size: .92rem; color: var(--text-soft); font-family: var(--body); margin-top: 2px; }
.dish .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.dish .price { font-weight: 700; color: var(--amber); white-space: nowrap; font-size: 1.05rem; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text); text-decoration: none; font-weight: 600; margin-bottom: 8px; }
.back-link:hover { text-decoration: underline; }
.price-head { display: flex; justify-content: flex-end; gap: 22px; margin-bottom: 4px; }
.price-head span { width: 64px; text-align: right; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); }
.dish .p2 { display: inline-flex; gap: 22px; white-space: nowrap; }
.dish .p2 b { width: 64px; text-align: right; color: var(--amber); font-weight: 700; font-size: 1.05rem; }
.dish .p2 b.empty { color: transparent; }
@media (max-width:520px){ .price-head span,.dish .p2 b{width:52px} .dish .name{font-size:1.12rem} }

/* ---------- Mobil ---------- */
@media (max-width: 880px) {
  .story-grid, .contact-grid, .moon-grid { grid-template-columns: 1fr; gap: 32px; }
  .moon-grid { direction: ltr; }
  .moon .moon-photo { order: -1; }
  .cards { grid-template-columns: 1fr; }
  .mp-grid { grid-template-columns: 1fr; }
  .grid-photos { grid-template-columns: repeat(2,1fr); grid-auto-rows: 150px; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav { position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--panel); border-bottom: 1px solid var(--line); padding: 8px 0; display: none; }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 14px 24px; }
  .topbar .wrap { gap: 12px; }
  .brand-logo { height: 44px; }
  .hero { min-height: 80vh; }
  .row2 { grid-template-columns: 1fr; }
  .booking-form { padding: 22px; }
}
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px; }

/* Rezervasyon butonları (WhatsApp + E-posta) */
.rz-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.rz-buttons .btn { width: 100%; margin-top: 0; }

/* ---------- Galeri Lightbox ---------- */
.gallery .gp img { cursor: zoom-in; }
.lb-overlay { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(8,12,11,.95); backdrop-filter: blur(4px); }
.lb-overlay.open { display: flex; }
.lb-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lb-img { max-width: 92vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.6); object-fit: contain; }
.lb-cap { color: var(--text-soft); font-size: .95rem; text-align: center; max-width: 80vw; }
.lb-close, .lb-prev, .lb-next { position: fixed; background: rgba(255,255,255,.12); color: #fff; border: 0; cursor: pointer; width: 52px; height: 52px; border-radius: 50%; font-size: 1.6rem; line-height: 1; display: grid; place-items: center; transition: background .2s, color .2s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--amber); color: var(--ink-dark); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-count { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.85); font-size: .9rem; background: rgba(0,0,0,.45); padding: 5px 14px; border-radius: 999px; }
@media (max-width: 600px) {
  .lb-close, .lb-prev, .lb-next { width: 44px; height: 44px; font-size: 1.3rem; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; } .lb-close { top: 12px; right: 12px; }
}
