/* ========== VARIABLES ========== */
:root {
  --cream: #F8F5EF;
  --cream-dark: #EDE8E0;
  --dark: #1a1a1a;
  --dark-soft: #2d2d2d;
  --accent: #A4825F;
  --accent-hover: #8f6e4d;
  --text: #333;
  --text-light: #f5f5f5;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Open Sans', sans-serif;
  --radius: 4px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --transition: 0.3s ease;
}

/* ========== BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
/* İç sayfalar: sabit header altında içerik boşluğu */
.inner-page main { padding-top: 72px; }
.section { padding: 120px 0; }
.page-hero { padding-top: 60px; padding-bottom: 60px; }
.section-about { padding-bottom: 200px; }
.nav-links a.nav-current { color: var(--accent); }
.section.dark { background: var(--dark); color: var(--text-light); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 48px;
  color: var(--text);
}
.section-title.light { color: var(--text-light); }
.section-title-right { text-align: right; }
.label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.label.light { color: rgba(255,255,255,0.8); }
.heading-serif {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.2;
}
.heading-serif.light { color: #fff; }
.body-text { margin: 0 0 24px; max-width: 540px; }
.body-text.light { color: rgba(255,255,255,0.9); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn-outline:hover { background: var(--text); color: #fff; }
.btn-block { width: 100%; text-align: center; }

/* Placeholder alanları: Kendi resimlerinizi ekleyince background-image veya <img> kullanın */
[data-placeholder] {
  background: var(--cream-dark);
  background-size: cover;
  background-position: center;
}

/* ========== GRID ========== */
.grid { display: grid; gap: 48px; align-items: start; }
.grid-2 { grid-template-columns: 1fr 1fr; }

/* ========== HERO (video arka plan) ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 24px 80px;
}
.hero-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}
.hero-star {
  width: 18px;
  height: 18px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.hero-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 12px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 28px;
}
.hero-title br { display: block; }
.btn-hero-cta {
  padding: 16px 40px;
  font-size: 0.8rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.btn-hero-cta:hover { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }

/* Hero: sol sidebar (dikey REZERVASYON + telefon) */
.hero-sidebar {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}
.hero-sidebar-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-orientation: mixed;
}
.hero-sidebar-phone {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-orientation: mixed;
}
.hero-sidebar-phone:hover { color: #fff; text-decoration: underline; }
.hero-sidebar-icon {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.hero-sidebar-icon .material-symbols-outlined {
  font-size: 22px;
  line-height: 1;
}
.hero-sidebar-icon:hover { background: rgba(255, 255, 255, 0.15); }

/* Hero: aşağı kaydır oku */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--transition), border-color var(--transition);
}
.hero-scroll:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
.hero-scroll-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}

/* Hero içi şeffaf header */
.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 20px 0;
  background: transparent;
  transition: background var(--transition);
}
.hero-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hero-header .nav-links {
  margin-left: auto;
}
.hero-header .nav-brand-hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.98);
  text-decoration: none;
}
.nav-brand .brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.nav-logo {
  display: block;
  height: auto;
  max-height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.hero-header .nav-logo {
  max-height: 52px;
 
}
.hero-header .nav-brand-hero .brand-main {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.hero-header .nav-brand-hero .brand-sub {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  opacity: 0.95;
}
.hero-header .nav-links a {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.hero-header .nav-links a:hover { color: #fff; }
.hero-header .btn-header {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
}
.hero-header .btn-header:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* ========== TOP HEADER (kaydırınca görünen koyu bar) ========== */
.top-header {
  background: var(--dark);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.top-header.is-visible {
  transform: translateY(0);
}
.top-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.top-header .nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
}
.top-header .nav-brand .brand-main {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.12em;
}
.top-header .nav-brand .nav-logo {
  max-height: 44px;
 
}
.top-header .nav-brand .brand-sub {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  opacity: 0.9;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 24px;
}
.nav-links a {
  color: rgba(255,255,255,0.95);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 6px 0;
}
.nav-links a:hover { opacity: 0.85; text-decoration: underline; }
.btn-header { padding: 10px 24px; font-size: 0.75rem; }

/* Şehir Rehberi dropdown */
/* Rezervasyon menü öğesi: sadece mobilde görünsün (masaüstünde REZERVASYON YAP butonu var) */
.nav-item-mobile-only { display: none; }

.nav-item-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 4px;
  min-width: 200px;
  padding: 8px 0;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.12);
  list-style: none;
  display: none;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.nav-item-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: rgba(255,255,255,0.08); text-decoration: none; opacity: 1; }
.nav-link-parent { padding-right: 0; }
.nav-item-dropdown .nav-link-parent::after {
  content: '';
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
  border: 4px solid transparent;
  border-top-color: currentColor;
  border-bottom: 0;
}
.nav-item-dropdown:hover .nav-link-parent::after { border-top-color: transparent; border-bottom-color: currentColor; border-bottom: 4px solid currentColor; border-top: 0; }

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.nav-toggle::before,
.nav-toggle::after,
.nav-toggle span {
  content: '';
  position: absolute;
  left: 4px;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}
.nav-toggle::before { top: 8px; }
.nav-toggle span { top: 15px; }
.nav-toggle::after { top: 22px; }
.nav-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
  top: 15px;
}
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
  top: 15px;
}

/* ========== WELCOME ========== */
.section-welcome { background: var(--cream); }
.welcome-grid { align-items: center; }
.welcome-text { position: relative; }
.welcome-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.welcome-star {
  width: 16px;
  height: 16px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.welcome-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.welcome-heading { margin-bottom: 20px; }
.welcome-p { margin: 0 0 16px; }
.reservations {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 24px 0 28px;
}
.reservations .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.reservations .icon-phone {
  width: 48px;
  height: 48px;
}
.reservations .text p {
  margin: 0 0 4px;
  font-size: 0.8rem;
  color: var(--text);
}
.reservations .text a {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-decoration: none;
}
.reservations .text a:hover { text-decoration: underline; }
.reservations .text a + a { margin-top: 4px; }
/* Görseller: yan yana, 3:4 oran, hafif dikey ofset */
.welcome-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: end;
  max-width: 560px;
  margin-left: auto;
}
.welcome-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
  display: block;
}
.welcome-img-1 { align-self: start; position: relative; top: 90px; }
.welcome-img-2 { align-self: end; }

/* ========== ROOMS ========== */
.section-rooms { background: var(--cream); }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin: 0 0 8px;
}
.section-rooms .section-title { margin-bottom: 40px; }
.rooms-grid { display: grid; gap: 20px; }
.rooms-grid-5 {
  grid-template-columns: repeat(6, 1fr);
}
.room-card {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-dark);
  display: block;
  text-decoration: none;
  color: inherit;
}
.room-card-portrait {
  grid-column: span 2;
  aspect-ratio: 3 / 4;
}
.room-card-landscape {
  grid-column: span 3;
  aspect-ratio: 16 / 10;
}
.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.room-card:hover img {
  transform: scale(1.08);
}
.room-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 56px 24px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: #fff;
}
.room-price {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.room-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}
.room-card-book {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-orientation: mixed;
}
.room-card:hover .room-card-book { background: var(--accent); }

/* ========== ROOM LIST PAGE (Odalar sayfası – Cappa tarzı alternatif satırlar) ========== */
.section-rooms-list { background: #fff; padding-bottom: 120px; }
.room-listing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 420px;
  margin-bottom: 80px;
  scroll-margin-top: 80px;
}
.room-listing:last-child { margin-bottom: 0; }
.room-listing--reverse .room-listing__image-wrap { order: -1; }
.room-listing__content { padding: 24px 0; }
.room-listing__price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}
.room-listing__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.2;
}
.room-listing__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #555;
  margin: 0 0 20px;
  max-width: 480px;
}
.room-listing__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  font-size: 0.85rem;
  color: #666;
}
.room-listing__amenities li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.room-listing__amenities .material-symbols-outlined {
  font-size: 18px;
  color: var(--accent);
  font-variation-settings: 'opsz' 20, 'FILL' 0, 'wght' 400, 'GRAD' 0;
}
.room-listing__details {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 16px;
  transition: color var(--transition);
}
.room-listing__details:hover { color: var(--accent); }
.room-listing__arrow { margin-left: 4px; }
.room-listing__btn { margin-top: 8px; }
.room-listing__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.room-listing__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.room-listing__image-wrap:hover .room-listing__image { transform: scale(1.04); }

/* ========== TESTIMONIALS ========== */
.section-testimonials {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Arka plan: kaydırmada sabit (parallax) */
.testimonial-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--dark) center center / cover no-repeat;
  background-attachment: fixed;
}
.testimonial-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.5);
}
.testimonial-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px;
}
.testimonial-quote-mark {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(8rem, 20vw, 14rem);
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
}
.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.95);
  margin: 0 0 28px;
  font-style: italic;
}
.testimonial-quote.light { color: rgba(255,255,255,0.95); }
.testimonial-slider { position: relative; min-height: 200px; }
.testimonial-slide {
  display: none;
  animation: testimonialFade 0.4s ease;
}
.testimonial-slide.active { display: block; }
@keyframes testimonialFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.testimonial-client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream-dark);
}
.testimonial-client-info { text-align: left; }
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}
.testimonial-star {
  width: 14px;
  height: 14px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.testimonial-author-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
  margin: 0 0 2px;
}
.testimonial-author-role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.testimonial-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.testimonial-btn svg {
  width: 20px;
  height: 20px;
}
.testimonial-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background var(--transition);
}
.testimonial-dots .dot:hover { background: rgba(255,255,255,0.6); }
.testimonial-dots .dot.active { background: var(--accent); }

/* ========== OTEL HİZMETLERİ (services grid) – Cappa referans: kart gölge, padding, radius ========== */
.section-services {
  background: #fafafa;
  padding: 80px 0;
}
.section-services .section-label {
  color: var(--accent);
  margin-bottom: 8px;
}
.section-services .section-title {
  margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.services-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.services-grid-6 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.service-card {
  position: relative;
  background: #fff;
  padding: 36px;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  border: none;
}
.service-icon-ghost {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 96px;
  font-variation-settings: 'opsz' 24, 'FILL' 0, 'wght' 400, 'GRAD' 0;
  color: var(--accent);
  opacity: 0.06;
  pointer-events: none;
  font-family: 'Material Symbols Outlined', sans-serif;
}
.service-icon {
  position: absolute;
  left: 36px;
  top: 36px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.service-icon svg {
  width: 28px;
  height: 28px;
}
.service-icon.material-symbols-outlined {
  font-size: 28px;
  font-variation-settings: 'opsz' 24, 'FILL' 0, 'wght' 400, 'GRAD' 0;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 10px;
  padding-left: 68px;
}
.service-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  padding-left: 68px;
}

/* ========== ŞEHİR REHBERİ (Diyarbakır tarihi yerler) ========== */
.section-guide { background: #fff; }
.guide-list { display: flex; flex-direction: column; gap: 32px; }
.guide-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.guide-item:last-of-type { border-bottom: none; }
.guide-item__title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.3;
}
.guide-item__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ========== DİYARBAKIR TARİHÇESİ (uzun metin sayfası) ========== */
.container--narrow { margin-left: auto; margin-right: auto; }
.section-tarihce { background: #fff; }
.tarihce-content { padding: 0 0 24px; }
.tarihce-p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 1.25em;
}
.tarihce-h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 2.5em 0 0.75em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-dark);
}
.tarihce-h2:first-of-type { margin-top: 1.5em; }
.tarihce-h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 2em 0 0.6em;
}
.tarihce-kaynak {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  margin: 2.5em 0 0;
  padding-top: 1em;
  border-top: 1px solid var(--cream-dark);
}

/* ========== REZERVASYON HERO (Cappa tarzı) ========== */
.section-booking-hero {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  min-height: 420px;
}
.page-booking-hero.section-booking-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.page-booking-hero .booking-hero-inner {
  width: 100%;
}
.booking-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
}
.booking-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.5);
}
.booking-hero-inner {
  position: relative;
  z-index: 2;
}
.booking-hero-grid {
  display: grid;
 
  gap: 48px;
  align-items: center;

  margin: 0 auto;
}
.booking-hero-info {
  color: #fff;
}
.booking-hero-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.booking-star {
  width: 18px;
  height: 18px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.booking-hero-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.95);
  margin: 0 0 28px;
  max-width: 380px;
}
.booking-hero-phone-wrap {
  margin-bottom: 8px;
}
.booking-hero-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
}
.booking-hero-phone {
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.booking-hero-phone:hover { color: var(--accent); }
.booking-hero-tollfree {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.booking-hero-check {
  font-size: 1.2rem;
  color: var(--accent);
}
.booking-panel {
  background: #f8f6f3;
  padding: 40px 36px 44px;
  border-radius: 8px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.2);
}
.booking-panel-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}
.booking-panel-title {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
}
.booking-panel-subtitle {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 24px;
}
.booking-panel-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.55;
  margin: 0 0 24px;
}
.booking-panel--cta .booking-panel-btn {
  display: block;
  text-align: center;
  text-decoration: none;
}
.booking-panel--full .booking-form-section { margin-bottom: 20px; }
.booking-panel--full .booking-form-section:last-of-type { margin-bottom: 24px; }
.booking-panel-form { display: block; }
.booking-panel-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 24px;
}
.booking-panel-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-panel-form label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
}
.booking-panel-form input,
.booking-panel-form select {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.booking-panel-form input:focus,
.booking-panel-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(164, 130, 95, 0.15);
}
.booking-panel-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.booking-panel-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

/* İletişim sayfası ve eski booking-card (detaylı form) */
.section-contact {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--dark);
  background-size: cover;
  background-position: center;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.6);
}
.section-contact .container { position: relative; z-index: 2; }
.contact-details {
  color: rgba(255,255,255,0.9);
  margin: 20px 0 24px;
  line-height: 1.9;
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.social-links a {
  color: #fff;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.social-links .social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* İletişim formu (iletişim sayfası) */
.contact-form-card {
  background: #fff;
  padding: 40px 44px 44px;
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.15);
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-form-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}
.contact-form-subtitle {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 24px;
}
.contact-form { display: block; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form .form-row { margin-bottom: 16px; }
.contact-form .form-row .form-group { margin-bottom: 0; }
.contact-form label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(164, 130, 95, 0.15);
}
.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form-submit {
  margin-top: 8px;
  padding: 16px 24px;
  font-size: 0.85rem;
  width: 100%;
}

.booking-card {
  background: #fff;
  padding: 40px 44px 44px;
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.15);
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.06);
}
.booking-card-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.booking-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}
.booking-card-subtitle {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.booking-form { display: block; }
.booking-form-section {
  margin-bottom: 24px;
}
.booking-form-section:last-of-type { margin-bottom: 28px; }
.booking-form-section-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.form-row {
  display: grid;
  gap: 16px;
}
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row-1 { grid-template-columns: 1fr; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(164, 130, 95, 0.15);
}
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #999;
}
.booking-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.booking-form textarea {
  resize: vertical;
  min-height: 80px;
}
.booking-form-submit {
  margin-top: 8px;
  padding: 16px 24px;
  font-size: 0.85rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.9);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer-logo img {
  display: block;
  height: auto;
  max-height: 48px;
  max-width: 160px;
  object-fit: contain;

}
.footer-heading {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px;
}
.footer-col p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
/* Hızlı Bağlantılar – dikey liste, madde işareti yok */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
/* İletişim: adres, telefon (ikonlu), e-posta (altı çizgili) */
.footer-address {
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-phone {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-phone-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 2px solid currentColor;
  border-radius: 3px;
  position: relative;
}
.footer-phone-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  width: 6px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 0 3px;
}
.footer-phone a {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.footer-phone a:hover { color: var(--accent); }
.footer-email {
  margin: 0 0 20px;
}
.footer-email a {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.footer-email a:hover { color: var(--accent); }
/* Sosyal ikonlar – yatay sıra */
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.footer-social .social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
/* Alt çizgi: copyright + yukarı çık butonu */
.footer-bottom {
  padding: 20px 0 24px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copyright {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99;
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.footer-scroll-top:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.footer-scroll-icon {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid currentColor;
  margin-bottom: 2px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; }
  .facility-item { grid-template-columns: 1fr; }
  .facility-img { max-width: 100%; aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-booking-hero { min-height: auto; padding: 56px 0; }
  .booking-hero-info { text-align: center; }
  .booking-hero-desc { max-width: none; margin-left: auto; margin-right: auto; }
  .booking-hero-stars { justify-content: center; }
  .booking-hero-phone-wrap { text-align: center; }
  .booking-hero-tollfree { justify-content: center; }
  .footer-scroll-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .header-inner { flex-wrap: wrap; justify-content: space-between; align-items: center; }
  .nav-brand { order: 1; }
  .nav-toggle { order: 2; display: block; }
  .nav-links {
    display: none;
    order: 99;
    width: 100%;
    padding: 16px 0;
    flex-direction: column;
    text-align: center;
  }
  .nav-links.is-open { display: flex; }
  .nav-item-dropdown { position: static; }
  .nav-dropdown {
    position: static;
    transform: none;
    margin: 4px 0 0 16px;
    padding: 4px 0 8px;
    border: none;
    box-shadow: none;
    min-width: 0;
    display: none;
  }
  .nav-links.is-open .nav-item-dropdown.dropdown-open .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 6px 0; font-size: 0.75rem; }
  .nav-link-parent::after { display: none; }
  .nav-item-mobile-only { display: list-item; }
  .btn-header { display: none; }
  .hero { min-height: 100vh; }
  .hero-sidebar { display: none; }
  .hero-title { font-size: 2rem; }
  .hero-content { padding-bottom: 64px; }
  .hero-scroll { bottom: 20px; }
  .welcome-images { max-width: 100%; margin-left: 0; gap: 16px; }
  .rooms-grid-5 { grid-template-columns: 1fr; }
  .room-card-portrait,
  .room-card-landscape { grid-column: span 1; }
  .room-listing {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    margin-bottom: 56px;
  }
  .room-listing--reverse .room-listing__image-wrap { order: 0; }
  .room-listing__image-wrap { max-height: 280px; }
  .services-grid,
  .services-grid-4,
  .services-grid-6 { grid-template-columns: 1fr; gap: 28px; }
  .testimonial-bg { background-attachment: scroll; }
  .testimonial-quote-mark { display: none; }
  .form-row-2,
  .form-row-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-wrap: wrap; justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { margin-bottom: 32px; }
  .section-title-right { text-align: center; }
}
