/* ===== Holiday Hotel Kızkalesi - Stil ===== */
:root {
  --navy: #0a3d62;
  --navy-deep: #072c47;
  --sea: #1f7a8c;
  --gold: #c79a3b;
  --sunset: #f6a623;
  --coral: #ff7e5f;
  --cream: #fbf6ee;
  --sand: #f3e9d8;
  --ink: #1a2b3c;
  --muted: #5b6b7a;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(10, 61, 98, 0.12);
  --shadow-sm: 0 6px 18px rgba(10, 61, 98, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); color: var(--navy); margin-bottom: 0.5rem; }
h3 { font-size: 1.15rem; }
img, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: 0.78rem;
  font-weight: 600; color: var(--gold); margin-bottom: 0.6rem;
}
.eyebrow.light { color: var(--sunset); }
.muted { color: var(--muted); }
.muted-light { color: rgba(255,255,255,0.78); }

/* ===== Butonlar ===== */
.btn {
  display: inline-block; padding: 0.85rem 1.7rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: 0.25s ease;
  border: 2px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--sunset), var(--coral)); color: #fff; box-shadow: 0 10px 24px rgba(246,166,35,0.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(246,166,35,0.45); }
.btn-ghost { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { transform: translateY(-3px); }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 1rem 0; transition: 0.3s ease;
}
.navbar.scrolled { background: rgba(255,255,255,0.72); box-shadow: 0 4px 24px rgba(10,61,98,0.08); padding: 0.6rem 0; backdrop-filter: blur(16px) saturate(1.5); -webkit-backdrop-filter: blur(16px) saturate(1.5); border-bottom: 1px solid rgba(255,255,255,0.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 0.7rem; color: #fff; transition: 0.3s; }
.navbar.scrolled .brand { color: var(--navy); }
.brand-mark { color: var(--gold); display: flex; }
.brand-mark img { display: block; width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
@media (max-width: 560px) { .brand-mark img { width: 40px; height: 40px; } }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: 'Playfair Display', serif; font-size: 1.25rem; letter-spacing: 1px; }
.brand-text small { font-size: 0.62rem; letter-spacing: 2px; opacity: 0.85; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { color: #fff; font-size: 0.92rem; font-weight: 500; transition: 0.2s; opacity: 0.92; }
.navbar.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--gold); opacity: 1; }
.nav-cta { background: var(--gold); color: var(--navy) !important; padding: 0.5rem 1.1rem; border-radius: 50px; }
.nav-cta:hover { background: var(--sunset); }
.lang-link { border: 1px solid currentColor; border-radius: 50px; padding: 0.3rem 0.7rem; font-size: 0.82rem; font-weight: 600; opacity: 0.85; }
.lang-link:hover { opacity: 1; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: 0.3s; }
.navbar.scrolled .nav-toggle span { background: var(--navy); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; color: #fff;
  overflow: hidden;
  background: linear-gradient(180deg, #0a3d62 0%, #1f7a8c 45%, #f6a623 100%);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s ease; }
.hero-photo.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,44,71,0.55) 0%, rgba(7,44,71,0.3) 38%, rgba(7,44,71,0.8) 100%); }
.hero.has-photo .sun, .hero.has-photo .hero-scene { display: none; }
.sun {
  position: absolute; top: 30%; left: 50%;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, #fff6d8 0%, #ffd86b 45%, rgba(255,216,107,0) 70%);
  margin-left: -110px; margin-top: -110px; opacity: 0.9;
  animation: glow 6s ease-in-out infinite alternate;
}
@keyframes glow { from { transform: scale(1); opacity: 0.8; } to { transform: scale(1.08); opacity: 1; } }
.hero-scene { position: absolute; bottom: 0; left: 0; width: 100%; height: 45%; }
.hero-content { position: relative; z-index: 2; max-width: 760px; padding-top: 4rem; }
.hero-eyebrow { letter-spacing: 4px; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 1rem; color: #ffe9c2; }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 700; text-shadow: 0 4px 30px rgba(0,0,0,0.25); }
.hero-sub { margin: 1.4rem auto 2.2rem; font-size: clamp(1rem, 2vw, 1.2rem); max-width: 600px; color: rgba(255,255,255,0.95); }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 2.4rem; color: #fff; opacity: 0.8; animation: bob 1.8s infinite;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== Bölümler ===== */
.section { padding: 6rem 0; }
.section-alt { background: var(--sand); }
.section-dark { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: #fff; }
.section-dark h2 { color: #fff; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }

.stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.stats div { display: flex; flex-direction: column; }
.stats strong { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--sea); }
.stats span { font-size: 0.85rem; color: var(--muted); }

/* Fotoğraf yer tutucuları */
.ph {
  position: relative; border-radius: var(--radius); min-height: 240px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: linear-gradient(135deg, var(--sea), var(--navy)); box-shadow: var(--shadow);
}
.ph span { font-size: 4rem; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25)); }
.ph::after {
  content: attr(data-label); position: absolute; bottom: 0; left: 0; width: 100%;
  padding: 0.7rem 1rem; font-size: 0.85rem; font-weight: 500; color: #fff;
  background: linear-gradient(transparent, rgba(7,44,71,0.85)); text-align: left;
}
.ph-tall { min-height: 440px; }
.media-card { width: 100%; }
.gallery .g1 { background: linear-gradient(135deg, #f6a623, #ff7e5f); }
.gallery .g2 { background: linear-gradient(135deg, #1f7a8c, #0a3d62); }
.gallery .g3 { background: linear-gradient(135deg, #0a3d62, #13314d); }
.gallery .g4 { background: linear-gradient(135deg, #2aa9c4, #1f7a8c); }
.gallery .g5 { background: linear-gradient(135deg, #e0a458, #c9852f); }
.gallery .g6 { background: linear-gradient(135deg, #355c7d, #1f7a8c); }

/* ===== Özellikler ===== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.feature {
  background: #fff; padding: 1.8rem 1.4rem; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-sm); transition: 0.3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.fi { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; margin: 0 auto 0.9rem; border-radius: 16px; background: linear-gradient(135deg, rgba(31,122,140,0.12), rgba(10,61,98,0.12)); color: var(--sea); }
.fic { width: 30px; height: 30px; }
.feature:hover .fi { background: linear-gradient(135deg, var(--sea), var(--navy)); color: #fff; transition: 0.3s; }
.feature h3 { color: var(--navy); margin-bottom: 0.3rem; }
.feature p { font-size: 0.9rem; color: var(--muted); }

/* ===== Restoran menü ===== */
.menu-list { list-style: none; margin: 1.2rem 0 1.8rem; }
.menu-list li { padding: 0.5rem 0; border-bottom: 1px dashed #d8cab0; font-size: 0.98rem; }

/* ===== Aktiviteler ===== */
.activities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.act {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.4rem; text-align: center;
  box-shadow: var(--shadow-sm); transition: 0.3s;
}
.act:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.act-ic { display: flex; align-items: center; justify-content: center; color: var(--sea); margin-bottom: 0.9rem; }
.act-ic svg { width: 46px; height: 46px; }
.act:hover .act-ic { color: var(--gold); transition: color 0.3s; }
.act h3 { color: var(--navy); margin-bottom: 0.4rem; }
.act p { font-size: 0.9rem; color: var(--muted); }

/* ===== Galeri ===== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery .ph { min-height: 230px; }
.gallery-item { position: relative; border: 0; padding: 0; margin: 0; cursor: zoom-in; overflow: hidden; border-radius: 12px; background: #e7eef2; aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1.2rem; }
.gallery-filters button { border: 1px solid #cfdde4; background: #fff; color: var(--navy); font-family: inherit; font-weight: 500; font-size: 0.85rem; padding: 0.4rem 1rem; border-radius: 20px; cursor: pointer; transition: 0.2s; }
.gallery-filters button:hover { border-color: var(--sea); }
.gallery-filters button.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.gallery-note { text-align: center; font-size: 0.82rem; margin-top: 1.2rem; }

/* ===== Misafir Yorumları ===== */
.testimonials { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 980px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .testimonials { grid-template-columns: 1fr; } }
.tcard { background: #fff; border-radius: var(--radius); padding: 1.5rem 1.4rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; margin: 0; }
.tstars { color: #f6a623; letter-spacing: 2px; font-size: 1rem; margin-bottom: 0.7rem; }
.tcard blockquote { margin: 0 0 1.2rem; font-size: 0.93rem; line-height: 1.6; color: #2c3e50; flex: 1; }
.tcard figcaption { display: flex; align-items: center; gap: 0.7rem; }
.tavatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--sea), var(--navy)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.tmeta { display: flex; flex-direction: column; font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.tmeta small { font-weight: 400; color: var(--muted); font-size: 0.75rem; }
.t-cta { text-align: center; margin-top: 1.8rem; }

/* ===== CTA Bandı (sosyal kanıttan sonra) ===== */
.cta-band { padding: 4.5rem 0; text-align: center; background: radial-gradient(circle at 50% -10%, rgba(31,122,140,0.14), transparent 55%), var(--cream, #faf6ef); }
.cta-band-inner { max-width: 660px; margin: 0 auto; }
.cta-band h2 { color: var(--navy); margin-bottom: 0.6rem; }
.cta-band .muted { margin-bottom: 0; }
.cta-band-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

/* ===== İkon (güven şeridi / mesafe / iletişim) ===== */
.trust-item strong { display: inline-flex; align-items: center; gap: 0.4rem; }
.trust-item .tic, .trust-item .star { width: 24px; height: 24px; color: var(--gold); }
.loc-facts .tic { width: 26px; height: 26px; color: var(--sea); vertical-align: -5px; margin-right: 4px; }
.contact-list .cic { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ===== Gerçek görsel kartları (Hakkında/Restoran) ===== */
.media-photo { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.media-tall { min-height: 440px; }
@media (max-width: 760px) { .media-photo { min-height: 240px; } .media-tall { min-height: 280px; } }

/* ===== Oda olanak ikonları ===== */
.room-amen { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0 0 0.9rem; padding: 0; }
.room-amen li { display: inline-flex; align-items: center; gap: 4px; font-size: 0.74rem; color: var(--navy); background: #eef4f6; border-radius: 20px; padding: 0.28rem 0.65rem; }
.aic { width: 14px; height: 14px; color: var(--sea); flex-shrink: 0; }

/* ===== Konum / Mesafeler bloğu ===== */
.loc-facts { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 0 0 2.5rem; padding: 0; }
@media (max-width: 700px) { .loc-facts { grid-template-columns: repeat(2, 1fr); } }
.loc-facts li { background: #fff; border-radius: var(--radius); padding: 1.1rem 1rem; text-align: center; box-shadow: var(--shadow-sm); }
.loc-facts strong { display: block; color: var(--navy); font-size: 1.05rem; margin-bottom: 0.2rem; }
.loc-facts span { font-size: 0.82rem; color: var(--muted); }

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; background: rgba(6,22,36,0.92); padding: 2vh 1rem; }
.lightbox[hidden] { display: none; }
.lb-figure { margin: 0; max-width: 92vw; max-height: 92vh; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.lb-figure img { max-width: 92vw; max-height: 84vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lb-figure figcaption { color: #e8eef2; font-size: 0.9rem; }
.lb-close, .lb-nav { position: fixed; background: rgba(255,255,255,0.14); color: #fff; border: 0; cursor: pointer; border-radius: 50%; transition: background 0.2s; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.3); }
.lb-close { top: 18px; right: 20px; width: 44px; height: 44px; font-size: 1.3rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
@media (max-width: 560px) { .lb-nav { width: 44px; height: 44px; font-size: 1.6rem; } .lb-prev { left: 6px; } .lb-next { right: 6px; } }

/* ===== İletişim ===== */
.contact-list { list-style: none; margin: 1.8rem 0; }
.contact-list li { display: flex; gap: 1rem; padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-list span { font-size: 1.4rem; }
.contact-list a { color: var(--sunset); }
.contact-list a:hover { text-decoration: underline; }
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }
.map-facade {
  width: 100%; height: 100%; min-height: 380px; border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.7rem;
  background: linear-gradient(135deg, var(--sea), var(--navy)); color: #fff; transition: 0.25s;
}
.map-facade:hover { filter: brightness(1.08); }
.map-facade .map-pin { font-size: 2.8rem; }
.map-facade strong { font-size: 1.05rem; }
.map-facade .map-cta { background: rgba(255,255,255,0.2); padding: 0.55rem 1.2rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600; }

/* ===== Footer ===== */
.footer { background: var(--navy-deep); color: #fff; padding: 2.5rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-brand .brand-text strong { color: var(--gold); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem 1.4rem; }
.footer-links a { font-size: 0.9rem; opacity: 0.85; }
.footer-links a:hover { color: var(--gold); }

/* ===== WhatsApp yüzen buton ===== */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.5); transition: transform 0.2s, box-shadow 0.2s;
  cursor: grab; touch-action: none; user-select: none; -webkit-user-select: none;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(37,211,102,0.6); }
.wa-float:active { cursor: grabbing; }
.wa-float.dragging { transition: none; cursor: grabbing; transform: scale(1.05); }
.wa-float svg { pointer-events: none; }

/* ===== Instagram yüzen buton (WhatsApp'ın üstünde) ===== */
.ig-float {
  position: fixed; bottom: 88px; right: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(214,36,159,0.45); transition: transform 0.2s, box-shadow 0.2s;
}
.ig-float:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(214,36,159,0.55); }
.ig-float svg { pointer-events: none; }
@media (max-width: 768px) { .ig-float { bottom: 84px; } }

/* ===== Dil değiştirici (navbar) ===== */
.nav-actions { display: flex; align-items: center; gap: 0.9rem; color: #fff; transition: color 0.3s; }
.navbar.scrolled .nav-actions { color: var(--navy); }
.lang-switch {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1px solid currentColor; border-radius: 50px; padding: 3px; line-height: 1;
}
.lang-switch a {
  color: inherit; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px;
  padding: 0.28rem 0.6rem; border-radius: 50px; transition: 0.2s;
}
.lang-switch a:hover:not(.active) { color: var(--gold); }
.lang-switch a.active { background: var(--gold); color: var(--navy) !important; }

/* ===== Galeri teaser (ana sayfa) ===== */
.gallery-teaser-btn { margin-top: 1.5rem; }
.room-link-foot { margin-top: auto; padding-top: 0.4rem; }

/* ===== Galeri sayfası ===== */
.lang-switch-dark { color: var(--navy); }
.blog-nav .lang-switch { margin-left: 0.3rem; }
.gallery-page { margin-top: 1.6rem; }
@media (max-width: 560px) { .blog-nav { flex-wrap: wrap; gap: 0.7rem; row-gap: 0.6rem; } }

/* ===== Reveal animasyonu ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: 0.7s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav-links {
    position: fixed; top: 0; right: 0; transform: translateX(100%); height: 100vh; width: 75%; max-width: 320px;
    background: var(--navy); flex-direction: column; justify-content: center;
    gap: 1.8rem; transition: transform 0.35s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: #fff !important; font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background:#fff; }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background:#fff; }
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .order-2 { order: 2; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .activities { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 4rem 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .features, .activities, .gallery { grid-template-columns: 1fr; }
  .stats { gap: 1.2rem; }
}

/* ===== Dar konteyner ===== */
.container-narrow { width: min(820px, 92%); margin: 0 auto; }

/* ===== Hava durumu rozeti ===== */
.weather-chip {
  display: inline-flex; align-items: center; gap: 0.5rem; margin: 1.2rem auto 0;
  padding: 0.45rem 1rem; border-radius: 50px; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(12px) saturate(1.4); -webkit-backdrop-filter: blur(12px) saturate(1.4);
  color: #fff; font-size: 0.9rem; width: fit-content;
}
.weather-chip .w-ico { font-size: 1.2rem; }
.weather-chip .w-temp { font-weight: 600; }
.weather-chip .w-loc { opacity: 0.85; }

/* ===== Güven şeridi ===== */
.trust-strip { background: var(--navy); color: #fff; padding: 1.1rem 0; }
.trust-inner { display: flex; justify-content: space-around; align-items: center; gap: 1rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; }
.trust-item strong { font-size: 1.3rem; }
.trust-item a { display: flex; align-items: center; gap: 0.55rem; color: #fff; }
.trust-item a:hover { color: var(--gold); }

/* ===== Rezervasyon formu ===== */
.booking-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
  background: #fff; padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow);
  max-width: 760px; margin: 0 auto;
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 500; color: var(--muted); margin-bottom: 0.35rem; }
.field input, .field select {
  padding: 0.7rem 0.9rem; border: 1px solid #d9cfbe; border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; color: var(--ink); background: #fff; transition: 0.2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--sea); box-shadow: 0 0 0 3px rgba(31,122,140,0.15); }
.btn-block { width: 100%; text-align: center; }
.form-hint { font-size: 0.78rem; color: var(--muted); margin-top: 0.6rem; text-align: center; }

/* ===== SSS akordeon ===== */
.faq-item {
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-sm);
  margin-bottom: 0.9rem; overflow: hidden; border: 1px solid #eee4d3;
}
.faq-item summary {
  cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 600; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--gold); transition: transform 0.25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.3rem 1.2rem; color: var(--muted); margin: 0; }
.faq-item a { color: var(--sea); }

/* ===== Mobil sabit aksiyon çubuğu ===== */
@media (max-width: 768px) {
  .trust-inner { gap: 0.6rem 1.2rem; }
  .trust-item { font-size: 0.82rem; }
}

/* ===== Odalar ===== */
.rooms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
@media (max-width: 1100px) { .rooms { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rooms { grid-template-columns: 1fr; } }
.room-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: 0.3s; display: flex; flex-direction: column; }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-img { min-height: 200px; border-radius: 0; background: linear-gradient(135deg, #2aa9c4, #1f7a8c); }
.room-img-4 { background: linear-gradient(135deg, var(--coral), var(--sunset)); }
/* Fotoğraflı oda kapağı (buton) */
.room-img-btn { position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: zoom-in; overflow: hidden; background: none; }
img.room-img { width: 100%; height: 210px; object-fit: cover; display: block; min-height: 0; transition: transform 0.4s; }
.room-img-btn:hover img.room-img { transform: scale(1.06); }
.room-img-cap { position: absolute; bottom: 0; left: 0; width: 100%; padding: 0.7rem 1rem; font-size: 0.9rem; font-weight: 600; color: #fff; text-align: left; background: linear-gradient(transparent, rgba(7,44,71,0.85)); }
.room-img-count { position: absolute; top: 10px; right: 10px; background: rgba(7,44,71,0.78); color: #fff; font-size: 0.72rem; font-weight: 600; padding: 3px 8px; border-radius: 20px; }
.rp-soon .rp-val { color: var(--sunset); }
.room-price { display: flex; flex-direction: column; gap: 0.4rem; margin: 0.2rem 0 1rem; }
.rp-row { display: flex; align-items: baseline; justify-content: space-between; padding: 0.45rem 0.7rem; background: #f3f7f9; border-radius: 10px; }
.rp-label { font-size: 0.82rem; color: var(--muted); }
.rp-val { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.rp-val small { font-size: 0.7rem; font-weight: 500; color: var(--muted); margin-left: 2px; }
.rooms-note { text-align: center; font-size: 0.82rem; margin-top: 1.6rem; }
.room-body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.room-body h3 { color: var(--navy); margin-bottom: 0.4rem; }
.room-body p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.9rem; }
.room-body .room-price { margin-top: auto; }
.room-link { color: var(--sea); font-weight: 600; font-size: 0.92rem; }
.room-link:hover { color: var(--sunset); }

/* ===== Rezervasyon avantaj rozetleri ===== */
.booking-perks { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; margin-top: 1.2rem; }
.booking-perks span { font-size: 0.85rem; color: var(--sea); font-weight: 500; }

/* ===== Yukarı çık butonu ===== */
.to-top {
  position: fixed; bottom: 22px; left: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--navy); color: #fff; font-size: 1.3rem; line-height: 1;
  box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none;
  transform: translateY(10px); transition: 0.3s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--sea); }

/* ===== Aktif menü vurgusu (scrollspy) ===== */
.nav-links a.active { color: var(--gold); }
.navbar.scrolled .nav-links a.active { color: var(--gold); }
.nav-links a.nav-cta.active { color: var(--navy) !important; }

/* ===== Erişilebilirlik: hareketi azalt tercihi ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .sun { animation: none !important; }
}

@media (max-width: 768px) {
  .rooms { grid-template-columns: 1fr; }
  .to-top { bottom: 76px; left: 16px; }
}

/* ===== Anchor offset: sabit menü başlıkları kapatmasın ===== */
section { scroll-margin-top: 80px; }

/* ===== BLOG ===== */
.blog-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: var(--shadow-sm); }
.blog-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; }
.blog-header .brand { color: var(--navy); }
.blog-header .brand-mark { color: var(--gold); }
.blog-nav { display: flex; align-items: center; gap: 1.3rem; }
.blog-nav a { color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.blog-nav a:hover { color: var(--gold); }
.blog-nav .nav-cta { background: var(--gold); color: var(--navy); padding: 0.5rem 1.1rem; border-radius: 50px; }
.blog-nav .nav-cta:hover { background: var(--sunset); color: #fff; }

.blog-hero { background: linear-gradient(135deg, var(--navy-deep), var(--sea)); color: #fff; padding: 3.4rem 0; text-align: center; }
.blog-hero .eyebrow { color: var(--sunset); }
.blog-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.blog-hero p { max-width: 620px; margin: 0.8rem auto 0; color: rgba(255,255,255,0.9); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-thumb { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--sea); }
.blog-card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.blog-card h2 { font-size: 1.2rem; color: var(--navy); line-height: 1.28; }
.blog-card h2 a:hover { color: var(--sea); }
.blog-excerpt { color: var(--muted); font-size: 0.92rem; margin: 0.6rem 0 1rem; flex: 1; }
.blog-readmore { color: var(--sea); font-weight: 600; font-size: 0.9rem; }

/* Tekil yazı */
.post-hero { width: 100%; max-height: 400px; aspect-ratio: 21 / 9; object-fit: cover; display: block; background: var(--sea); }
.post-wrap { width: min(760px, 92%); margin: 0 auto; padding: 2.4rem 0 1rem; }
.breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.1rem; }
.breadcrumb a { color: var(--sea); }
.post-wrap h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy); line-height: 1.2; margin-bottom: 0.5rem; }
.post-meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.6rem; padding-bottom: 1.2rem; border-bottom: 1px solid #eee4d3; }
.post-content { color: #2a3b4c; font-size: 1.06rem; line-height: 1.8; }
.post-content h2 { font-size: 1.5rem; color: var(--navy); margin: 2.1rem 0 0.7rem; }
.post-content h3 { font-size: 1.15rem; color: var(--sea); margin: 1.4rem 0 0.4rem; }
.post-content p { margin-bottom: 1rem; }
.post-content ul { margin: 0 0 1.2rem 1.3rem; }
.post-content li { margin-bottom: 0.45rem; }
.post-content strong { color: var(--navy); }
.post-cta { background: linear-gradient(135deg, var(--navy), var(--sea)); color: #fff; border-radius: var(--radius); padding: 1.8rem; text-align: center; margin: 2.6rem 0 1rem; }
.post-cta h3 { color: #fff; margin-bottom: 0.5rem; }
.post-cta p { color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.related { background: var(--sand); margin-top: 2rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

@media (max-width: 860px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-nav { gap: 0.9rem; }
  .blog-nav a:not(.nav-cta) { font-size: 0.88rem; }
}

/* ===== Erişilebilirlik: klavye odak halkası ===== */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--sunset); outline-offset: 2px; border-radius: 4px;
}

/* "İçeriğe geç" bağlantısı (yalnızca klavye odağında görünür) */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 0.7rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
