/* =====================================================
   Nature Park Cave Hotel — Custom CSS (Tailwind YOK)
   ===================================================== */

:root {
  --primary:        #1A1A1A;
  --primary-soft:   #2A2A2A;
  --accent:         #C9A96E;
  --accent-dark:    #B0925A;
  --bg:             #FFFFFF;
  --bg-soft:        #FAFAF7;
  --bg-section:     #F5F1EA;
  --muted:          #6B6B6B;
  --border:         #E8E4DD;
  --success:        #10B981;
  --whatsapp:       #25D366;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow:    0 8px 28px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 48px rgba(0,0,0,0.14);

  --font-sans:  'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --header-h:   68px;
  --container:  1240px;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.18;
  color: var(--primary);
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.4rem, 5vw + 1rem, 5rem); }
h2 { font-size: clamp(1.8rem, 3vw + 1rem, 3rem); }
h3 { font-size: clamp(1.2rem, 1vw + 1rem, 1.5rem); }
h4 { font-size: clamp(1.05rem, 0.5vw + 1rem, 1.25rem); }

/* ── Utilities ─────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .container { padding: 0 16px; } }

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
@media (max-width: 768px) { .section { padding: 56px 0; } .section-sm { padding: 40px 0; } }

.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

/* ── Section header ────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.18;
}
.section-desc {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all .25s;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-soft);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: #1faa54; color: #fff; }
.btn-sm  { padding: 10px 18px; font-size: 13px; }
.btn-lg  { padding: 16px 34px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }
.btn .w-4, .btn .w-5 { width: 16px; height: 16px; }

/* ── Brand / Logo (SVG + metin) ──────────────── */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(201, 169, 110, 0.26);
}
.brand-logo-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.06; }
.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--primary);
  letter-spacing: -0.015em;
}
.brand-sub {
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 1px;
}
.site-header.transparent:not(.scrolled) .brand-name { color: #fff; }
.site-header.transparent:not(.scrolled) .brand-sub  { color: rgba(255,255,255,0.75); }
.brand-light .brand-name { color: #fff; }
.brand-light .brand-sub  { color: rgba(255,255,255,0.7); }

/* ── HEADER ────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: all .25s;
}
.site-header.transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}
.header-inner .brand {
  min-width: 0;
  flex-shrink: 1;
}

/* Body padding (transparent değilse, sayfa içeriği header altına biner) */
body:not(.has-transparent-nav) main { padding-top: var(--header-h); }

/* Primary nav (desktop) */
.primary-nav { display: none; }
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--primary);
  border-radius: 6px;
  transition: all .15s;
}
.primary-nav a:hover { color: var(--accent); }
.primary-nav a.active { color: var(--accent); }
.primary-nav .caret { width: 14px; height: 14px; transition: transform .2s; }

/* Transparent nav: sadece üst menü satırı beyaz (dropdown içindeki linkler beyaz kalmasın) */
.site-header.transparent:not(.scrolled) .primary-nav > ul > li > a {
  color: rgba(255,255,255,0.92);
}
.site-header.transparent:not(.scrolled) .primary-nav > ul > li > a.active,
.site-header.transparent:not(.scrolled) .primary-nav > ul > li > a:hover {
  color: var(--accent);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  max-width: min(320px, calc(100vw - 32px));
  box-sizing: border-box;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
  z-index: 60;
}
.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--primary);
  border-radius: 6px;
  white-space: nowrap;
}
.dropdown a:hover { background: var(--bg-soft); color: var(--accent); }
.dropdown-all {
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding-top: 10px !important;
  color: var(--accent) !important;
  font-weight: 600 !important;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown:hover .caret { transform: rotate(180deg); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.menu-toggle {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--primary);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.site-header.transparent:not(.scrolled) .menu-toggle {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.20);
}
.reserve-btn .w-4 { width: 16px; height: 16px; }

@media (min-width: 1024px) {
  .primary-nav { display: block; flex: 1; justify-content: center; }
  .primary-nav ul { justify-content: center; }
  .menu-toggle { display: none; }
}
@media (max-width: 600px) {
  .reserve-btn span { display: none; }
  .reserve-btn { padding: 10px 12px; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86%, 380px);
  background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22,.68,0,1);
  overflow-y: auto;
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head {
  padding: 18px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.drawer-close {
  width: 38px; height: 38px;
  border-radius: 6px;
  background: var(--bg-soft);
  display: inline-flex; align-items: center; justify-content: center;
}
.drawer-nav { padding: 16px; flex: 1; overflow-y: auto; }
.drawer-link {
  display: block;
  padding: 14px 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  color: var(--primary);
}
.drawer-link:hover, .drawer-link.active { background: var(--bg-soft); color: var(--accent); }
.drawer-sub { margin: 4px 0; }
.drawer-sub summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-sub summary::-webkit-details-marker { display: none; }
.drawer-sub summary::after {
  content: '+';
  font-weight: 400;
  color: var(--muted);
  font-size: 22px;
}
.drawer-sub[open] summary::after { content: '−'; }
.drawer-sublink {
  display: block;
  padding: 11px 14px 11px 28px;
  font-size: 13.5px;
  color: var(--muted);
  border-radius: 8px;
}
.drawer-sublink:hover { color: var(--accent); background: var(--bg-soft); }
.drawer-foot {
  padding: 16px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}

/* ── HERO ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 82vh;
  min-height: 82svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--primary);
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.20) 35%, rgba(0,0,0,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(var(--header-h) + 32px) 0 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-intro {
  max-width: 640px;
  margin: 0 auto;
}
.hero-intro .hero-tag {
  margin-bottom: 12px;
}
.hero-intro .hero-page-title {
  margin-bottom: 0;
}
.hero-content h1.hero-page-title,
.hero-content h2 { color: #fff; }

/* Tek semantic h1; görünüm h2/h3 ölçeğinde — global devasa h1 kurallarından muaf */
.hero-page-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0;
  line-height: 0;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 auto;
  padding: 0;
  max-width: 520px;
}
.hero-page-title__main {
  display: block;
  font-size: clamp(1.2rem, 1.25vw + 0.82rem, 1.72rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.hero-page-title__sub {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-sans);
  font-size: clamp(0.625rem, 0.28vw + 0.52rem, 0.78rem);
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: rgba(255,255,255,0.88);
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 7px 15px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}
.hero-content .lead {
  font-size: clamp(15px, 1vw + 0.55rem, 19px);
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2.4s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}

/* Hero meta strip (alt başlık + featurelar) */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}
.hero-meta .item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

/* Hero — hızlı rezervasyon kutusu (ortalanmış) */
.hero-booking {
  width: 100%;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(28px, 4vw, 44px);
  margin-bottom: 8px;
}
.hero-booking-caption {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.72);
  margin-bottom: 14px;
  line-height: 1.45;
}
.hero-booking-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.12),
    0 24px 56px rgba(0,0,0,0.22);
}
.hero-booking-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  align-items: stretch;
}
.hero-booking-field label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.82);
  text-align: left;
}
.hero-booking-field input,
.hero-booking-field select {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.97);
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  min-height: 44px;
}
.hero-booking-field input:focus,
.hero-booking-field select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.hero-booking-field--narrow { flex: 0 1 104px; }
.hero-booking-field--date { flex: 1 1 148px; max-width: 200px; }
.hero-booking-submit {
  flex: 1 1 168px;
  max-width: 220px;
}
.hero-booking-submit .btn {
  width: 100%;
  justify-content: center;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  min-height: 44px;
}
@media (max-width: 640px) {
  .hero-booking-caption {
    padding: 0 8px;
  }
  .hero-booking-form {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 18px;
    gap: 12px;
  }
  .hero-booking-field--narrow,
  .hero-booking-field--date,
  .hero-booking-submit {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }
}

/* ── PAGE HEADER (alt sayfalarda kompakt hero) ── */
.page-hero {
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--primary);
  margin-top: 0;
  overflow: hidden;
}
.page-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.75) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 100px 0 60px;
}
.page-hero-inner h1 {
  color: #fff;
  font-size: clamp(2rem, 3vw + 1rem, 3.6rem);
  margin-bottom: 12px;
}
.page-hero-inner p { color: rgba(255,255,255,0.85); max-width: 640px; }
.page-hero .breadcrumb {
  display: flex; gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: var(--accent); }
.page-hero .breadcrumb .sep { opacity: 0.5; }

/* ── ROOM CARDS ────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 28px;
}
.room-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s;
}
.room-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--accent);
}
.room-card .card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.room-card .card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.22, 0.68, 0, 1);
}
.room-card:hover .card-image img { transform: scale(1.06); }
.room-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 0;
  z-index: 1;
}
.room-badge-popular {
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 1;
}
.room-card .card-body { padding: 24px; }
.room-card h3 { margin-bottom: 6px; font-size: 22px; }
.room-card .meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  color: var(--muted);
  font-size: 13px;
  margin: 10px 0 14px;
}
.room-card .meta span {
  display: inline-flex; align-items: center; gap: 5px;
}
.room-card .meta span svg { width: 14px; height: 14px; }
.room-card .price {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 16px;
}
.price-tag {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.price-tag .label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
  font-weight: 600;
}
.price-tag .value {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}
.price-tag .per {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-weight: 500;
  margin-left: 4px;
}
.room-card .detail-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 4px;
}
.room-card .detail-link:hover { gap: 8px; }

/* ── ROOM DETAIL ───────────────────────────────── */
.room-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
@media (max-width: 980px) {
  .room-detail-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Gallery slider */
.gallery-main {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-soft);
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 80px), 1fr));
  gap: 8px;
  margin-top: 8px;
}
.gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--bg-soft);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--accent); }
.gallery-thumb:hover { opacity: 0.85; }

/* Room info card */
.room-info-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 32px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.room-info-card .room-type {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.room-info-card h1 {
  font-size: clamp(1.6rem, 1.5vw + 1rem, 2.2rem);
  margin-bottom: 14px;
}
.room-info-card .price-block {
  margin: 18px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.room-info-card .price-block .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 600;
}
.room-info-card .price-block .value {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  display: inline-flex; align-items: baseline; gap: 6px;
}
.room-info-card .price-block .per {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}
.room-info-card .actions {
  display: flex; flex-direction: column; gap: 8px;
}

.room-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 12px;
  margin-top: 28px;
}
.room-features-list .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 500;
}
.room-features-list .feature svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.room-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
  gap: 18px;
  padding: 22px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.room-meta-grid .item .label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 4px;
}
.room-meta-grid .item .value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--primary);
}

/* ── AMENITIES (anasayfa) ─────────────────────── */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 16px;
}
.amenity-box {
  text-align: center;
  padding: 28px 18px;
  background: #fff;
  border: 1px solid var(--border);
  transition: all .25s;
}
.amenity-box:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.amenity-icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--bg-soft);
  border-radius: 50%;
}
.amenity-icon svg { width: 24px; height: 24px; color: var(--accent); }
.amenity-box h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}
.amenity-box p { font-size: 12px; color: var(--muted); }

/* ── PHOTO GALLERY GRID ────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 980px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }

.photo-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-soft);
  cursor: pointer;
}
.photo-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.photo-tile:hover img { transform: scale(1.06); }
.photo-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
  opacity: 0;
  transition: opacity .25s;
}
.photo-tile:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
}
.lightbox .close {
  position: absolute;
  top: 24px; right: 24px;
  color: #fff;
  background: rgba(255,255,255,0.10);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: rgba(255,255,255,0.10);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox .nav.prev { left: 20px; }
.lightbox .nav.next { right: 20px; }

/* Filter chips */
.filter-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}
.filter-chips button {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary);
  cursor: pointer;
  transition: all .15s;
  border-radius: 999px;
}
.filter-chips button:hover { border-color: var(--accent); color: var(--accent); }
.filter-chips button.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ── INFO BLOCKS / KARTLAR ───────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 20px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px;
}
.info-card .icon-box {
  width: 50px; height: 50px;
  background: var(--bg-soft);
  border-radius: 8px;
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.info-card .icon-box svg { width: 22px; height: 22px; color: var(--accent); }
.info-card h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.info-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ── CTA BANNER ────────────────────────────────── */
.cta-banner {
  background: var(--primary);
  color: #fff;
  padding: 56px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner h3 { color: #fff; font-size: clamp(1.4rem, 2vw + 0.5rem, 2.2rem); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.7); }
.cta-banner .btn-accent { background: var(--accent); }
@media (max-width: 768px) {
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 24px; }
}

/* ── FORMS ─────────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
  border-radius: 4px;
  transition: all .15s;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-msg {
  padding: 13px 18px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
}
.form-msg.success { background: rgba(16,185,129,0.10); color: #057a55; border-left: 3px solid #10B981; }
.form-msg.error   { background: rgba(239,68,68,0.10);  color: #b91c1c; border-left: 3px solid #ef4444; }

/* ── FOOTER ────────────────────────────────────── */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-brand-col p {
  margin: 16px 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 320px;
}
.footer-social {
  display: flex; gap: 8px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  border-radius: 6px;
  transition: all .15s;
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 14.5px; }
.footer-col a:hover { color: #fff; }

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.footer-contact svg {
  width: 17px; height: 17px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bar {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.50);
}

/* ── FLOATING WHATSAPP (sol alt) ───────────────── */
.float-whatsapp {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  left: calc(24px + env(safe-area-inset-left, 0px));
  right: auto;
  z-index: 70;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.40);
  transition: transform .25s;
}
.float-whatsapp:hover { transform: scale(1.08); color: #fff; }
.float-whatsapp-icon {
  width: 30px;
  height: 30px;
  display: block;
}

/* Üst menü dil seçici (açılır liste: bayrak + kod + tam ad) */
.lang-dropdown {
  position: relative;
  flex-shrink: 0;
}
.lang-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px 7px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.10);
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.site-header:not(.transparent) .lang-dropdown-trigger,
.site-header.scrolled .lang-dropdown-trigger {
  border-color: var(--border);
  background: var(--bg-soft);
  color: var(--primary);
}
.site-header.transparent:not(.scrolled) .lang-dropdown-trigger {
  color: #fff;
}
.lang-dropdown-trigger:hover {
  background: rgba(255,255,255,0.16);
}
.site-header:not(.transparent) .lang-dropdown-trigger:hover,
.site-header.scrolled .lang-dropdown-trigger:hover {
  background: #fff;
}
.lang-dropdown-trigger-flags svg {
  width: 22px;
  height: auto;
  display: block;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.lang-dropdown-trigger-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.08;
  text-align: left;
}
.lang-dropdown-abbr {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.lang-dropdown-native {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.9;
}
.site-header:not(.transparent) .lang-dropdown-native,
.site-header.scrolled .lang-dropdown-native {
  opacity: 0.72;
}
.site-header.transparent:not(.scrolled) .lang-dropdown-native {
  color: rgba(255,255,255,0.88);
}
.lang-dropdown-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform .22s ease;
}
.lang-dropdown.is-open .lang-dropdown-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 228px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 120;
}
.lang-dropdown-panel[hidden] {
  display: none !important;
}
.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  transition: background .15s;
}
.lang-dropdown-item:hover {
  background: var(--bg-soft);
}
.lang-dropdown-item.is-active {
  background: rgba(201, 169, 110, 0.26);
}
.lang-dropdown-item-flag svg {
  width: 26px;
  height: auto;
  display: block;
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.lang-dropdown-item-name {
  flex: 1;
  min-width: 0;
}
.lang-dropdown-item-code {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* Mobil çekmece dil satırı */
.drawer-lang {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}
.drawer-lang-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 10px;
}
.drawer-lang-buttons {
  display: flex;
  gap: 10px;
}
.drawer-lang-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 12px 8px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--primary);
  text-align: center;
}
.drawer-lang-btn:hover {
  border-color: var(--accent);
}
.drawer-lang-btn.is-active {
  border-color: var(--accent);
  background: rgba(201, 169, 110, 0.22);
}
.drawer-lang-btn-flag svg {
  width: 32px;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.drawer-lang-btn-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.drawer-lang-btn-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.2;
}

@media (max-width: 420px) {
  .lang-dropdown-native {
    display: none;
  }
  .lang-dropdown-trigger {
    padding: 7px 8px;
    gap: 6px;
  }
}

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Üst çok linkli menü için sıkılaştırma + dropdown kaydırma */
@media (min-width: 1024px) and (max-width: 1340px) {
  .primary-nav a {
    padding: 8px 8px;
    font-size: 12.85px;
  }
  .primary-nav ul { gap: 0; column-gap: 2px; }
}
.dropdown {
  max-height: min(70vh, 520px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.dropdown a {
  white-space: normal;
  max-width: 280px;
  line-height: 1.35;
}

@media (max-width: 599px) {
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 420px) {
  .reserve-btn span { display: none; }
}

body:not(.has-transparent-nav) .page-hero-inner {
  padding-top: 52px;
  padding-bottom: 52px;
}
