:root {
  --gold: #c9a063;
  --gold-soft: #d8b16a;
  --ink: #111;
  --text: #222;
  --ph: #d9dcdf;
  --ph-text: #8a9096;
  --header-h: 80px;
  --container: 1500px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay[hidden] { display: none; }
.after-image img { object-position: center 25%; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 6vw, 115px);
}

/* Görsel yer tutucu */
.ph {
  width: 100%;
  height: 100%;
  background: var(--ph);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ph-text);
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  padding: 8px;
}

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: #fff;
  z-index: 100;
  box-shadow: 0 4px 12px -2px rgba(201, 160, 99, .55);
}
.header-inner {
  height: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 96px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-img { flex-shrink: 0; display: block; width: 216px; }
.logo-img img { width: 100%; height: auto; object-fit: contain; }

.logo {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Cinzel', serif;
  color: #1a1a1a;
  line-height: 1;
  padding-top: 8px;
  flex-shrink: 0;
}
.logo-text { font-size: 19px; letter-spacing: 1.5px; white-space: nowrap; }
.logo-text em { font-style: normal; color: var(--gold); font-size: 26px; margin: 0 2px; }
.logo-star { position: absolute; top: -4px; left: 50%; transform: translateX(-2px); color: var(--gold); font-size: 20px; }
.logo-stars { color: var(--gold); font-size: 7px; letter-spacing: 9px; margin-top: 8px; }
.logo-light { color: #fff; }
.logo-light .logo-text { font-size: 24px; }

.main-nav { display: flex; align-self: stretch; gap: clamp(20px, 2.7vw, 52px); }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #111;
  white-space: nowrap;
  transition: color .2s;
}
.nav-item:hover .nav-link { color: var(--gold); }
button.nav-link { padding: 0; cursor: default; }
.sub-toggle { display: none; }

.dropdown {
  position: absolute;
  top: 100%;
  left: -26px;
  min-width: 275px;
  list-style: none;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li + li { border-top: 1px solid #eee; }
.dropdown a {
  display: block;
  padding: 12px 14px;
  font-size: 15px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #111;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.dropdown a:hover { color: var(--gold); background: #faf7f2; }

/* İkinci seviye: sağa açılır */
.dropdown .has-sub { position: relative; }
.dropdown-label {
  display: block;
  padding: 12px 14px;
  font-size: 15px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #111;
  white-space: nowrap;
  cursor: default;
}
.dropdown .has-sub:hover > .dropdown-label { background: #f0f0f0; }
.dropdown .has-sub:hover > a { background: #f0f0f0; color: #111; }
.dropdown-sub {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 275px;
  list-style: none;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
}
.dropdown .has-sub:hover > .dropdown-sub,
.dropdown .has-sub:focus-within > .dropdown-sub { opacity: 1; visibility: visible; }

.header-actions { display: flex; align-items: center; gap: 30px; }
.icon-link { color: #8a8f99; display: flex; transition: color .2s; }
.icon-link:hover { color: var(--gold); }
.lang-switch { display: flex; align-items: center; gap: 6px; font-size: 15px; letter-spacing: 2px; color: #bbb; }
.lang-switch a { color: #888; font-weight: 400; transition: color .2s; }
.lang-switch a:hover { color: var(--gold); }
.lang-switch a.active { color: #111; font-weight: 500; }
.btn-reserve {
  border: 1px solid var(--gold);
  padding: 16px 6px;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
  transition: background .2s, color .2s;
}
.btn-reserve:hover { background: var(--gold); color: #fff; }

.menu-toggle { display: none; width: 28px; height: 20px; position: relative; }
.menu-toggle span {
  position: absolute; left: 0; width: 100%; height: 2px; background: #111;
  transition: transform .25s, opacity .25s;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  margin-top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow: hidden;
  background: #b9c3c8;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide .ph { background: linear-gradient(135deg, #aebdc5, #cfd8dc 50%, #b7c4ca); color: #fff; align-items: flex-end; padding-bottom: 60px; }

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  pointer-events: none;
  padding: 0 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .15);
}
.hero-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(70px, 10vw, 170px);
  line-height: .9;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: clamp(14px, 3.4vw, 64px);
  margin-right: calc(-1 * clamp(14px, 3.4vw, 64px));
  line-height: 1.1;
}
.hero-subtitle {
  margin-top: 28px;
  border: 2px solid #fff;
  border-radius: 40px;
  padding: 8px 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.7vw, 28px);
}


/* ================= ORTAK BAŞLIKLAR ================= */
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 14px;
}
.eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #111;
}
.display {
  font-weight: 100;
  font-size: clamp(40px, 4.2vw, 76px);
  line-height: 1.4;
  color: #000;
  margin: 28px 0 60px;
}
.section-title {
  font-weight: 300;
  font-size: clamp(34px, 3vw, 50px);
  color: #000;
  margin-top: 26px;
}
.btn-pill {
  display: inline-block;
  border: 1px solid var(--gold);
  border-radius: 30px;
  padding: 14px 26px;
  font-size: 19px;
  text-transform: uppercase;
  color: #111;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
  transition: background .2s, color .2s;
}
.btn-pill:hover { background: var(--gold); color: #fff; }

/* ================= SPLIT BÖLÜMLER ================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
  padding-top: 45px;
  padding-bottom: 120px;
}
.split-text p { font-size: 17px; line-height: 1.8; margin-bottom: 55px; max-width: 650px; }
.split-media { aspect-ratio: 731 / 588; }
.split-ladies { padding-top: 140px; padding-bottom: 60px; }
.split-ladies .split-media { aspect-ratio: 846 / 594; }
.framed { position: relative; }
.framed::before {
  content: '';
  position: absolute;
  right: -24px;
  bottom: -14px;
  width: 50%;
  height: 50%;
  background: var(--gold-soft);
  z-index: -1;
}
.split-ladies { position: relative; z-index: 0; }

/* ================= ODALAR ================= */
.rooms { padding: 20px 0 60px; }
.rooms-wrap {
  max-width: 1720px;
  margin: 64px auto 0;
  padding: 0 clamp(16px, 5vw, 96px);
}
.rooms-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 4 * 25px) / 5);
  column-gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.rooms-track::-webkit-scrollbar { display: none; }
.room-card {
  position: relative;
  aspect-ratio: 318 / 495;
  scroll-snap-align: start;
  overflow: hidden;
}
.room-card img, .room-card .ph { transition: transform .5s; }
.room-card:hover img, .room-card:hover .ph { transform: scale(1.05); }
.room-name {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 18px 18px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .55));
  opacity: 0;
  transition: opacity .3s;
}
.room-card:hover .room-name { opacity: 1; }
.rooms-nav {
  display: inline-flex;
  margin-top: 50px;
  background: var(--gold-soft);
}
.rooms-nav button {
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rooms-nav button:hover { background: rgba(0, 0, 0, .1); }

/* ================= FOOTER ================= */
.site-footer {
  margin-top: 60px;
  background: #f8f4ed;
  border-top: 3px solid var(--gold-soft);
  color: #222;
}
.footer-top { padding: 64px 0 52px; }
.footer-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 96px);
  display: grid;
  grid-template-columns: 1.1fr 1.3fr auto;
  gap: 48px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.footer-logo { display: block; width: 230px; }
.footer-logo img { height: auto; object-fit: contain; }
.footer-tagline { font-size: 16px; font-weight: 300; line-height: 1.6; color: #444; max-width: 300px; }
.footer-cta { font-size: 15px; padding: 11px 24px; background: #fff; }

.footer-heading {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 14px;
  margin-bottom: 26px;
}
.footer-heading::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 3px; background: #111; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 16px; align-items: flex-start; font-size: 16px; line-height: 1.7; margin-bottom: 18px; }
.fc-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border: 1px solid #d9c9a8;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  background: #fff;
}
.footer-contact a:hover { color: var(--gold); }

.footer-award { text-align: center; width: 190px; }
.award-img { width: 150px; height: 132px; margin: 0 auto 12px; }
.award-img img { object-fit: contain; }
.footer-award p { font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: #8a6d1f; line-height: 1.5; }

.footer-bottom { border-top: 1px solid #e6dccb; padding: 20px 0; background: #fff; }
.footer-bottom .footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px 30px; }
.footer-bottom p { font-size: 14px; color: #666; letter-spacing: .5px; }
.call-me { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #333; }
.call-me svg { color: var(--gold); }
.legal-links { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 14px; color: #555; }
.legal-links a:hover, .call-me:hover { color: var(--gold); }

/* ================= DETAY SAYFASI ================= */
.detail-page { padding-top: var(--header-h); }
.page-banner { height: clamp(260px, 50vh, 490px); }
.page-banner .ph { background: linear-gradient(135deg, #d8cbb3, #e8dfcf 50%, #cdbfa4); color: #fff; }

/* Rezervasyon çubuğu */
.booking-bar {
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.booking-inner {
  max-width: 1720px;
  margin: 0 auto;
  padding: 22px clamp(16px, 5vw, 96px);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: end;
  gap: 24px;
}
.booking-field { display: flex; flex-direction: column; gap: 10px; }
.booking-field > span { font-weight: 300; font-size: 17px; color: #111; }
.booking-date {
  width: 190px;
  max-width: 100%;
  height: 50px;
  border: 0;
  border-radius: 3px;
  padding: 0 14px 0 36px;
  font: 300 17px 'Roboto', sans-serif;
  color: #111;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}
.counter { display: flex; align-items: center; gap: 12px; }
.counter button {
  width: 32px;
  height: 38px;
  border-radius: 3px;
  background: #3a3a3a;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
}
.counter button:hover { background: var(--gold); }
.counter input {
  width: 88px;
  height: 50px;
  border: 0;
  border-radius: 3px;
  text-align: center;
  font: 300 17px 'Roboto', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
  -moz-appearance: textfield;
}
.counter input::-webkit-inner-spin-button,
.counter input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.booking-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 18px;
  border-radius: 5px;
  background: var(--gold-soft);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  align-self: center;
  transition: background .2s;
}
.booking-submit:hover { background: var(--gold); }

/* Çerçeveli görsel + metin */
.detail-intro { padding-top: 70px; padding-bottom: 60px; max-width: 1640px; }
.framed-outline {
  position: relative;
  aspect-ratio: 1404 / 500;
  margin-right: 40px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}
.framed-outline::before {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -37px;
  width: 52%;
  height: 87%;
  border: 8px solid #e2c99a;
  background: repeating-linear-gradient(135deg, #fff 0 6px, #f5f1ea 6px 8px);
  z-index: -1;
}
.detail-intro .framed-outline { z-index: 0; }
/* Düz altın çerçeve (çizgili dolgu yok) */
.framed-outline.plain::before {
  width: 52%;
  height: 87%;
  border-width: 7px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}
.framed-outline > .ph, .framed-outline > img { position: relative; }
.detail-title {
  font-weight: 300;
  font-size: clamp(34px, 3.2vw, 58px);
  text-transform: uppercase;
  color: #000;
  margin: 110px 0 36px;
}
.detail-title.as-is { text-transform: none; }
.detail-title.detail-subtitle { margin: 60px 0 24px; }

/* Banner üzerindeki yazı (ör. Saklı Deniz) */
.page-banner { position: relative; }
.banner-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  padding: 0 16px;
  pointer-events: none;
}
.banner-caption-title {
  font-weight: 400;
  font-size: clamp(22px, 1.9vw, 34px);
  letter-spacing: .18em;
  padding-bottom: 12px;
  position: relative;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .25);
}
.banner-caption-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 90px;
  height: 3px;
  background: #fff;
  transform: translateX(-50%);
}
.banner-caption-sub {
  background: #111;
  font-size: clamp(15px, 1.2vw, 21px);
  padding: 2px 10px;
}
.detail-list { list-style: none; margin: 4px 0 30px; }
.detail-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.6;
  color: #111;
}
.detail-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: .5em;
  width: 7px;
  height: 7px;
  border-top: 2.5px solid var(--gold-soft);
  border-right: 2.5px solid var(--gold-soft);
  transform: rotate(45deg);
}
.framed-outline.after-image { margin-top: 100px; margin-bottom: 40px; }
.detail-text { font-size: 17px; line-height: 1.8; color: #111; margin-bottom: 30px; }

/* Galeri */
.gallery-wrap { max-width: 1720px; margin: 0 auto; padding: 60px clamp(16px, 5vw, 96px) 80px; }
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 306px));
  gap: 8px;
}
.gallery-item { position: relative; overflow: hidden; padding: 0; }
.gallery-item:first-child { grid-row: span 2; }

/* Izgara düzeni: eşit 3 sütun */
.gallery.gallery-grid {
  max-width: 1464px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: none;
  gap: 38px 37px;
}
.gallery-grid .gallery-item { aspect-ratio: 463 / 289; }
.gallery-grid .gallery-item:first-child { grid-row: auto; }
.gallery-item .ph, .gallery-item img { transition: transform .5s; }
.gallery-item:hover .ph, .gallery-item:hover img { transform: scale(1.04); }
.gallery-more {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  background: rgba(0, 0, 0, .25);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}
.gallery-more strong { font-size: 56px; line-height: 1; margin-bottom: 6px; }

/* Oda sayfası: görsel + üzerine binen kart */
.room-intro {
  max-width: 1640px;
  margin: 0 auto;
  padding: 80px clamp(16px, 6vw, 115px) 60px;
  display: grid;
  grid-template-columns: 58fr 12fr 30fr;
  align-items: start;
}
.room-intro-media {
  grid-column: 1 / 3;
  grid-row: 1;
  position: relative;
  aspect-ratio: 1088 / 687;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .2);
}
.room-intro-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  pointer-events: none;
}
.room-intro-card {
  grid-column: 2 / 4;
  grid-row: 1;
  position: relative;
  z-index: 1;
  margin-top: 22%;
  background: #fff;
  padding: 44px 38px 56px;
  box-shadow: 14px 10px 24px rgba(0, 0, 0, .06);
}
.room-title {
  position: relative;
  font-size: clamp(30px, 2.4vw, 42px);
  font-weight: 700;
  color: #000;
  margin-bottom: 26px;
}
.room-title::before {
  content: '';
  position: absolute;
  right: calc(100% + 16px);
  top: 50%;
  width: 102px;
  height: 3px;
  background: var(--gold-soft);
}
.room-intro-card p { font-size: 17px; line-height: 1.85; text-align: justify; color: #111; }
.room-intro-card p + p { margin-top: 22px; }

.room-features {
  max-width: 1640px;
  margin: 0 auto;
  padding: 40px clamp(16px, 7.5vw, 140px) 20px;
}
.room-features > * { max-width: 690px; }
.room-features h2 { font-size: 17px; font-weight: 700; color: #000; margin-bottom: 16px; }
.room-features .detail-text { margin-bottom: 14px; }
.room-features .detail-list { margin-top: 26px; }
.room-features .detail-list li { margin-bottom: 14px; }

/* İletişim sayfası */
.contact {
  max-width: 1480px;
  margin: 0 auto;
  padding: 50px clamp(16px, 5vw, 96px) 90px;
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 38px;
  align-items: start;
}
.contact-info { list-style: none; }
.contact-info li {
  display: flex;
  gap: 24px;
  padding: 0 0 28px 24px;
  margin-bottom: 14px;
  border-bottom: 1px solid #ddd;
}
.contact-info li:last-child { border-bottom: 0; }
.contact-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
}
.contact-info h2 { font-size: 23px; font-weight: 300; color: #8a6d1f; margin: 4px 0 14px; }
.contact-info p { font-size: 18px; line-height: 1.65; color: #111; }
.contact-info p + p { margin-top: 12px; }
.contact-info p.muted { color: #555; }
.contact-info a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 32px; max-width: 940px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #bbb;
  padding: 22px;
  font: 400 18px 'Roboto', sans-serif;
  color: #111;
  background: #fff;
}
.contact-form input { height: 70px; padding-block: 0; }
.contact-form textarea { min-height: 336px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form button {
  height: 62px;
  margin-top: -10px;
  border-radius: 5px;
  background: var(--gold);
  color: #fff;
  font-size: 23px;
  transition: background .2s;
}
.contact-form button:hover { background: #b98c4d; }
.form-note { padding: 14px 18px; font-size: 16px; }
.form-note.success { background: #eef7ee; color: #2e6b2e; }
.form-note.error { background: #fbeeee; color: #9a2b2b; }

/* Sekmeli sayfa (Aktivite) */
.tabs-layout {
  max-width: 1720px;
  margin: 0 auto;
  padding: 90px clamp(16px, 5vw, 96px) 100px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 30px;
  align-items: start;
}
.tab-list { display: flex; flex-direction: column; gap: 44px; padding-top: 14px; }
.tab-link {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  color: #bdbdbd;
  transition: color .2s;
}
.tab-link:hover { color: #888; }
.tab-link.active { color: var(--gold-soft); }
.tab-texts { margin-bottom: 44px; }
.tab-text { font-size: 17px; line-height: 1.8; color: #111; }
.tab-text + .tab-text { margin-top: 12px; }

/* Alt başlıklı sekmeler (Lezzet) */
.tab-list:has(.has-sub) { gap: 30px; padding-top: 0; }
.tab-link.has-sub { display: flex; flex-direction: column; gap: 12px; }
.tab-sub { font-size: 17px; font-weight: 400; color: #111; }
.tab-link.active .tab-sub { color: #555; }
.tab-single .gallery-item { display: block; width: 100%; aspect-ratio: 1310 / 700; }
.tab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 37px;
}
.tab-grid .gallery-item { aspect-ratio: 399 / 250; }
/* Sekme içinde kolaj galeri (1 büyük + 4 küçük) */
.gallery.tab-collage {
  max-width: 1040px;
  margin: 150px auto 0;
  grid-template-rows: repeat(2, minmax(0, 190px));
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, .9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lb-stage { width: min(90vw, 1200px); height: min(80vh, 750px); }
.lb-stage img { object-fit: contain; }
.lightbox button { position: absolute; color: #fff; font-size: 54px; line-height: 1; padding: 10px 18px; }
.lightbox button:hover { color: var(--gold-soft); }
.lb-close { top: 10px; right: 14px; }
.lb-prev { left: 8px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 8px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 18px; color: #ccc; font-size: 15px; letter-spacing: 1px; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1280px) {
  .nav-link { font-size: 14px; letter-spacing: 1px; }
  .header-actions { gap: 20px; }
  .rooms-track { grid-auto-columns: calc((100% - 3 * 25px) / 4); }
}

@media (max-width: 1100px) {
  .footer-top .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-award { grid-column: 1 / -1; justify-self: start; text-align: left; }
  .footer-award .award-img { margin-left: 0; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 24px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    transform: translateY(-120%);
    transition: transform .3s;
    z-index: -1;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-item { flex-wrap: wrap; border-bottom: 1px solid #eee; }
  .nav-link { flex: 1; padding: 14px 0; text-align: left; cursor: pointer; }
  button.nav-link { padding: 14px 0; }
  .dropdown-label { padding: 10px 0; font-size: 14px; white-space: normal; }
  .dropdown .has-sub:hover > .dropdown-label { background: none; }
  .sub-toggle {
    display: block;
    width: 44px;
    height: 44px;
    position: relative;
  }
  .sub-toggle::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 8px; height: 8px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: translate(-50%, -75%) rotate(45deg);
    transition: transform .25s;
  }
  .nav-item.sub-open .sub-toggle::before { transform: translate(-50%, -25%) rotate(-135deg); }
  .dropdown,
  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown {
    position: static;
    flex-basis: 100%;
    min-width: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0 0 10px 14px;
  }
  .nav-item.sub-open .dropdown { display: block; }
  .dropdown li + li { border-top: 0; }
  .dropdown a { padding: 10px 0; font-size: 14px; white-space: normal; }
  .dropdown a:hover { background: none; }
  .dropdown-sub {
    position: static;
    min-width: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    padding-left: 14px;
    border-left: 2px solid #eee;
  }
  .dropdown .has-sub:hover > a { background: none; }
  .split { grid-template-columns: 1fr; gap: 40px; padding-bottom: 70px; }
  .split-ladies { padding-top: 60px; }
  .split-ladies .split-text { order: 0; }
  .display { margin-bottom: 36px; }
  .rooms-track { grid-auto-columns: calc((100% - 2 * 20px) / 3); column-gap: 20px; }
  .booking-inner { grid-template-columns: repeat(2, auto); justify-content: space-between; }
  .booking-submit { grid-column: 1 / -1; justify-content: center; }
  .detail-title { margin-top: 80px; }
  .gallery.gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .tabs-layout { grid-template-columns: 1fr; gap: 30px; padding-top: 50px; }
  .tab-list {
    flex-direction: row;
    gap: 28px;
    overflow-x: auto;
    padding: 0 0 12px;
    border-bottom: 1px solid #eee;
    scrollbar-width: none;
  }
  .tab-list::-webkit-scrollbar { display: none; }
  .tab-link { font-size: 17px; white-space: nowrap; }
  .tab-link.has-sub { gap: 4px; }
  .tab-sub { font-size: 13px; }
  .tab-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .gallery.tab-collage { margin-top: 40px; }
  .contact { grid-template-columns: 1fr; }
  .contact-info li { padding-left: 0; }
  .room-intro { grid-template-columns: 1fr; padding-top: 50px; }
  .room-intro-media, .room-intro-card { grid-column: 1; }
  .room-intro-card { grid-row: 2; margin: -60px 24px 0; }
  .room-title::before { width: 40px; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .logo-text { font-size: 15px; }
  .logo-img { width: 150px; }
  .logo-text em { font-size: 20px; }
  .header-actions { gap: 14px; }
  .icon-link { display: none; }
  .lang-switch { font-size: 13px; letter-spacing: 1px; gap: 4px; }
  .btn-reserve { padding: 10px 8px; font-size: 12px; }
  .hero { min-height: 480px; }
  .hero-subtitle { padding: 6px 18px; }
  .split-text p { font-size: 16px; margin-bottom: 36px; }
  .framed::before { right: -10px; bottom: -10px; }
  .rooms-track { grid-auto-columns: 75%; column-gap: 14px; }
  .footer-top { padding: 44px 0 36px; }
  .footer-top .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-award { justify-self: start; text-align: left; }
  .award-img { margin-left: 0; }
  .footer-bottom .footer-inner { flex-direction: column; align-items: flex-start; }
  .legal-links { gap: 14px 20px; font-size: 14px; }
  .booking-inner { grid-template-columns: 1fr 1fr; gap: 18px 12px; }
  .booking-date { width: 100%; padding-left: 10px; font-size: 15px; }
  .counter { gap: 8px; }
  .counter input { width: 100%; min-width: 0; }
  .framed-outline { aspect-ratio: 4 / 3; margin-right: 14px; }
  .framed-outline::before { right: -14px; bottom: -14px; border-width: 5px; }
  .detail-title { margin: 56px 0 24px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-auto-rows: 140px; }
  .gallery-item:first-child { grid-column: 1 / -1; grid-row: span 2; }
  .gallery-more strong { font-size: 40px; }
  .gallery.gallery-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 14px; }
  .gallery-grid .gallery-item:first-child { grid-column: auto; grid-row: auto; }
  .tab-grid { grid-template-columns: 1fr; gap: 14px; }
  .room-intro-card { margin: -40px 10px 0; padding: 30px 22px 36px; }
  .room-intro-card p { font-size: 16px; text-align: left; }
  .room-title::before { display: none; }
  .tab-text { font-size: 16px; }
  .tab-texts { margin-bottom: 28px; }
  .gallery.tab-collage { margin-top: 0; grid-template-rows: none; }
  .form-row { grid-template-columns: 1fr; gap: 32px; }
  .contact-icon { width: 50px; height: 50px; }
  .contact-info li { gap: 16px; }
  .contact-info p { font-size: 16px; }
}

/* ================= WHATSAPP BUTONU ================= */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 22px rgba(0, 0, 0, .3); }
@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ================= 404 SAYFASI ================= */
.not-found { padding-top: 110px; padding-bottom: 120px; text-align: center; }
.not-found .eyebrow::after { left: 50%; transform: translateX(-50%); }
.not-found .display { margin: 28px 0 24px; }
.not-found p { font-size: 17px; margin-bottom: 40px; color: #444; }
