/* ============================================================
   SAHNE MARİN — koyu tema, altın detaylar, sahne & ışık atmosferi
   ============================================================ */

:root {
  --black: #09090b;
  --coal: #101014;
  --anthracite: #17171d;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #d8b25c;
  --gold-bright: #f2d288;
  --gold-deep: #a8823a;
  --text: #e9e7e2;
  --muted: #98948c;
  --whatsapp: #22c15e;
  --font-display: "Anton", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: #000;
  padding: 0.6rem 1.2rem;
  font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 45%, var(--gold-bright));
  color: #14100a;
  box-shadow: 0 8px 28px rgba(216, 178, 92, 0.28);
}
.btn-gold:hover { box-shadow: 0 12px 36px rgba(216, 178, 92, 0.42); }

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn-outline {
  border-color: var(--gold-deep);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #14100a; }

.btn-whatsapp {
  width: 100%;
  background: var(--whatsapp);
  color: #04170b;
  font-size: 0.88rem;
  padding: 1rem;
}
.btn-whatsapp:hover { box-shadow: 0 10px 30px rgba(34, 193, 94, 0.35); }

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.72rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(1320px, 100% - 2.5rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  display: block;
  height: 30px;
  max-width: 110px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}
.site-footer .brand-logo {
  height: 26px;
  max-width: 95px;
}

@media (min-width: 1024px) {
  .brand-logo {
    height: 34px;
    max-width: 125px;
  }
  .site-footer .brand-logo {
    height: 28px;
    max-width: 105px;
  }
}

.main-nav { display: none; gap: 2rem; }
.nav-link {
  position: relative;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  padding-block: 0.35rem;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.is-active { color: #fff; }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease;
}

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---------- Mobil menü ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(216, 178, 92, 0.12), transparent 60%),
    var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.4rem;
  cursor: pointer;
}

.mobile-link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7vw, 2.6rem);
  color: #fff;
  padding-block: 0.55rem;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.mobile-link i {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.mobile-link:hover { color: var(--gold-bright); padding-left: 0.5rem; }

.mobile-cta { margin-top: 2.2rem; align-self: flex-start; }

/* ---------- Bölüm iskeleti ---------- */
.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.gold-text {
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-bright) 60%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
  margin-bottom: clamp(2.4rem, 5vw, 3.8rem);
}
.section-desc {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.08) brightness(0.6);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}
.hero-slide:not(.is-active) img { animation: none; }
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(9, 9, 11, 0.75), rgba(9, 9, 11, 0.25) 35%, rgba(9, 9, 11, 0.9)),
    radial-gradient(90% 60% at 50% 110%, rgba(216, 178, 92, 0.16), transparent 60%);
}

/* Işık huzmeleri */
.hero-beams { position: absolute; inset: 0; z-index: 2; overflow: hidden; }
.beam {
  position: absolute;
  top: -20%;
  width: 130px;
  height: 130%;
  background: linear-gradient(to bottom, rgba(242, 210, 136, 0.28), transparent 75%);
  filter: blur(14px);
  transform-origin: top center;
  mix-blend-mode: screen;
}
.beam-1 { left: 12%; animation: sweep 7.5s ease-in-out infinite alternate; }
.beam-2 { left: 48%; width: 170px; animation: sweep 9s ease-in-out infinite alternate-reverse; }
.beam-3 { left: 80%; animation: sweep 6.5s ease-in-out 1s infinite alternate; }
@keyframes sweep {
  from { transform: rotate(-14deg); opacity: 0.5; }
  to { transform: rotate(14deg); opacity: 1; }
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.14'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
  padding-top: 4rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(216, 178, 92, 0.35);
  border-radius: 100px;
  background: rgba(9, 9, 11, 0.45);
  backdrop-filter: blur(8px);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  from { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6); }
  to { box-shadow: 0 0 0 12px rgba(255, 59, 59, 0); }
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4rem, 14vw, 10.5rem);
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #fff;
}
.hero-title .line { display: block; }
.hero-title .line-gold {
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-bright) 55%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(216, 178, 92, 0.35);
}

.hero-sub {
  max-width: 52ch;
  margin: 1.6rem 0 2.4rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(233, 231, 226, 0.85);
  transition: opacity 0.4s ease;
}
.hero-sub.is-fading { opacity: 0; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero slider controls */
.hero-controls {
  position: absolute;
  right: max(1.25rem, calc((100% - 1180px) / 2));
  bottom: 4.2rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: auto;
}
.hero-nav-btn {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(9, 9, 11, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.hero-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.hero-dots { display: flex; gap: 0.45rem; justify-content: center; }
.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
}
.hero-dot.is-active {
  width: 28px;
  border-radius: 100px;
  background: var(--gold);
}
.hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.hero-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

/* Marquee */
.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  border-top: 1px solid rgba(216, 178, 92, 0.25);
  background: rgba(9, 9, 11, 0.55);
  backdrop-filter: blur(10px);
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  padding-block: 0.9rem;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}
.marquee-track b { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Hakkımızda ---------- */
.about {
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(216, 178, 92, 0.07), transparent 60%),
    var(--coal);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1.05fr; gap: 4.5rem; }
}

.about-media { position: relative; }
.about-media > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(1.1) contrast(1.05);
}
.about-media::before {
  content: "";
  position: absolute;
  inset: -14px auto auto -14px;
  width: 90px;
  height: 90px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.about-badge {
  position: absolute;
  right: -12px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.3rem;
  background: var(--black);
  border: 1px solid rgba(216, 178, 92, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}
.about-badge strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.about-badge span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-copy p:not(.section-label) { color: var(--muted); }
.about-copy .section-title { margin-bottom: 1.4rem; }

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin: 2.2rem 0 0;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.about-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
}
.about-stats span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Menü ---------- */
.menu { background: var(--black); }

.menu-grid {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 760px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
}

.menu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--anthracite);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.menu-card:hover { border-color: rgba(216, 178, 92, 0.5); transform: translateY(-4px); }
.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.85);
  transition: transform 0.5s ease;
}
.menu-card:hover img { transform: scale(1.05); }
.menu-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.menu-card-body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.menu-card-body p { margin: 0; font-size: 0.92rem; color: var(--muted); }

.menu-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 2.4rem;
  padding: 1.5rem 1.8rem;
  border: 1px dashed rgba(216, 178, 92, 0.4);
  background: rgba(216, 178, 92, 0.04);
}
.menu-note p { margin: 0; color: var(--text); font-weight: 600; }

/* ---------- Etkinlikler ---------- */
.events {
  background:
    radial-gradient(70% 55% at 0% 100%, rgba(216, 178, 92, 0.06), transparent 60%),
    var(--coal);
}

.events-tabs {
  display: inline-flex;
  gap: 0.35rem;
  margin-bottom: 2rem;
  padding: 0.3rem;
  border: 1px solid var(--line);
  background: rgba(9, 9, 11, 0.5);
}
.events-tab {
  padding: 0.7rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}
.events-tab.is-active {
  color: #14100a;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 50%, var(--gold-bright));
}
.events-tab:not(.is-active):hover { color: var(--gold-bright); }

.events-panel { display: none; }
.events-panel.is-active { display: block; }

.event-list { display: grid; gap: 1rem; }

.event-row {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "date info"
    "thumb info"
    "actions actions";
  gap: 1rem 1.4rem;
  align-items: center;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.event-row:hover,
.event-row:focus-visible {
  border-color: rgba(216, 178, 92, 0.55);
  background: rgba(216, 178, 92, 0.05);
  outline: none;
}
@media (min-width: 860px) {
  .event-row {
    grid-template-columns: 96px 120px 1fr auto;
    grid-template-areas: "date thumb info actions";
  }
}

.event-date {
  grid-area: date;
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 1.2rem;
}
.event-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
}
.event-date span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.event-thumb {
  grid-area: thumb;
  width: 120px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(1.1) brightness(0.9);
  display: none;
}
@media (min-width: 860px) { .event-thumb { display: block; } }

.event-info { grid-area: info; }
.event-info h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.event-info p { margin: 0; font-size: 0.88rem; color: var(--muted); }

.event-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 860px) { .event-actions { justify-content: flex-end; } }

.event-tag {
  padding: 0.35rem 0.8rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  border: 1px solid rgba(216, 178, 92, 0.45);
  border-radius: 100px;
}
.event-hint {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.25s ease;
}
.event-row:hover .event-hint { opacity: 1; }

/* Etkinlik modal */
.event-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.event-modal.is-open { opacity: 1; visibility: visible; }

.event-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.event-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: var(--coal);
  border: 1px solid rgba(216, 178, 92, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s ease;
}
.event-modal.is-open .event-modal-panel { transform: none; }

.event-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(9, 9, 11, 0.7);
  border: 1px solid var(--line);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}
.event-modal-close:hover { border-color: var(--gold); color: var(--gold); }

.event-modal-media { position: relative; }
.event-modal-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.1) brightness(0.85);
}
.event-modal-media .event-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(9, 9, 11, 0.75);
}

.event-modal-body { padding: 1.5rem 1.6rem 1.8rem; }
.event-modal-body .section-label { margin-bottom: 0.6rem; }
.event-modal-body h3 {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
}

.event-modal-meta {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.2rem;
  padding: 0 0 1.2rem;
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.event-modal-meta li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}
.event-modal-meta span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-modal-meta strong { font-weight: 600; color: var(--text); text-align: right; }

.event-modal-note {
  margin: 0 0 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-bright);
}
.event-modal-detail {
  margin: 0 0 1.5rem;
  font-size: 0.94rem;
  color: var(--muted);
}
.event-modal-body .btn { width: 100%; }

/* ---------- Galeri ---------- */
.gallery { background: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
@media (min-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; }
  .g-tall { grid-row: span 2; }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--anthracite);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  filter: saturate(1.1) brightness(0.85);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.2) brightness(1); }
.gallery-item::after {
  content: "+";
  position: absolute;
  inset: auto 0.8rem 0.8rem auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(9, 9, 11, 0.7);
  border: 1px solid rgba(216, 178, 92, 0.5);
  color: var(--gold-bright);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ---------- Rezervasyon ---------- */
.reservation {
  background:
    radial-gradient(80% 70% at 50% 0%, rgba(216, 178, 92, 0.09), transparent 65%),
    var(--coal);
}

.reservation-panel {
  display: grid;
  gap: 2.6rem;
  padding: clamp(1.8rem, 4vw, 3.4rem);
  border: 1px solid rgba(216, 178, 92, 0.28);
  background: rgba(9, 9, 11, 0.65);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}
@media (min-width: 960px) {
  .reservation-panel { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
}

.reservation-copy p:not(.section-label) { color: var(--muted); }
.reservation-copy .section-title { margin-bottom: 1.2rem; }

.reservation-perks {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.reservation-perks li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.94rem;
  color: var(--text);
}
.reservation-perks li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.28em;
}

.reservation-form { display: grid; gap: 1.1rem; }

.form-row {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-field { display: grid; gap: 0.45rem; }
.form-field label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--anthracite);
  border: 1px solid var(--line);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.25s ease;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d8b25c' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(152, 148, 140, 0.65); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; }
.form-field input[type="date"] { color-scheme: dark; }

.form-hint {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- İletişim ---------- */
.contact { background: var(--black); }

.contact-grid {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  align-content: start;
}

.contact-card {
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--line);
  background: var(--anthracite);
  transition: border-color 0.3s ease;
}
.contact-card:hover { border-color: rgba(216, 178, 92, 0.5); }
.contact-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.contact-card p { margin: 0 0 0.6rem; font-size: 0.92rem; color: var(--muted); }
.contact-card a {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gold);
}
.contact-card a:hover { color: var(--gold-bright); }

.contact-map {
  min-height: 340px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9) hue-rotate(180deg);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--coal);
  padding-block: 2.4rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-nav a {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy { margin: 0; font-size: 0.8rem; color: var(--muted); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #04170b;
  box-shadow: 0 12px 34px rgba(34, 193, 94, 0.45);
  transition: transform 0.25s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(9, 9, 11, 0.94);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lightbox figure { margin: 0; max-width: min(1000px, 90vw); }
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid rgba(216, 178, 92, 0.35);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  font-size: 0.84rem;
  color: var(--muted);
}
#lightbox-counter { color: var(--gold); font-weight: 700; }

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 2.4rem;
  cursor: pointer;
}
.lightbox-close:hover { color: var(--gold); }

.lightbox-nav {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide img, .beam, .marquee-track, .live-dot { animation: none; }
  .hero-slide { transition: none; }
}
