/*
Theme Name: Meserret Palace - Istanbul
Theme URI: https://local.test/istanbul-otel
Author: Local Build Assistant
Description: Bilgilendirme odakli, modern otel web sitesi temasi.
Version: 2.0.2
Text Domain: istanbul-otel
*/

/* ========================================
   DESIGN TOKENS - Otelin ruhundan ilham
   ======================================== */
:root {
  /* Renk Paleti - Osmanli estetiginden */
  --ioh-bg: #ffffff;
  --ioh-bg-warm: #ffffff;
  --ioh-bg-dark: #1a1412;
  --ioh-surface: #ffffff;
  --ioh-primary: #b39b6b;       /* Sicak altin-bej ana vurgu */
  --ioh-primary-light: #c7b48a;
  --ioh-primary-dark: #8f7950;
  --ioh-gold: #b39b6b;          /* Ana altin-bej aksan */
  --ioh-gold-light: #c7b48a;
  --ioh-green: #2d5a3d;         /* Derin yesil - kadife koltuklar */
  --ioh-text: #1a1412;
  --ioh-text-light: #f5f0eb;
  --ioh-muted: #000000;
  --ioh-border: #e5ddd4;
  --ioh-border-light: #f0ebe4;

  /* Tipografi */
  --ioh-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ioh-font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Boyutlar */
  --ioh-radius: 0px;
  --ioh-radius-lg: 0px;
  --ioh-shadow: 0 4px 24px rgba(26, 20, 18, 0.06);
  --ioh-shadow-lg: 0 12px 48px rgba(26, 20, 18, 0.1);
  --ioh-shadow-hover: 0 16px 56px rgba(26, 20, 18, 0.14);
  --ioh-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ioh-font-body);
  color: var(--ioh-text);
  background: var(--ioh-bg);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ioh-transition);
}

img {
  max-width: 100%;
  display: block;
}

/* ========================================
   TIPOGRAFI
   ======================================== */
h1, h2, h3, h4 {
  font-family: var(--ioh-font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--ioh-text);
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

h1 em, h2 em {
  font-style: italic;
  color: var(--ioh-primary);
}

.ioh-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--ioh-primary);
  font-family: var(--ioh-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ioh-muted {
  color: #000000;
  line-height: 1.7;
  font-size: 1.1em;
  font-weight: 500;
}

/* ========================================
   LAYOUT
   ======================================== */
.ioh-container {
  width: min(1240px, 90vw);
  margin-inline: auto;
}

.ioh-center {
  text-align: center;
}

.ioh-section {
  padding: 80px 0;
}

.ioh-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.ioh-section-header.ioh-container {
  max-width: none;
}

.ioh-section-header p {
  margin-top: 8px;
}

/* Section varyanslari */
.ioh-section-dark {
  background: #e8ddd0;
  color: var(--ioh-text);
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.ioh-section-dark h2,
.ioh-section-dark h3 {
  color: var(--ioh-text);
}

.ioh-section-dark .ioh-eyebrow {
  color: var(--ioh-primary);
}

.ioh-section-dark p {
  color: var(--ioh-muted);
}

.ioh-section-warm {
  background: var(--ioh-bg-warm);
  padding: 80px 0;
}

/* ========================================
   TRANSPARAN HEADER
   ======================================== */
.ioh-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}

.ioh-site-header::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 20, 18, 0.42) 0%, rgba(26, 20, 18, 0.18) 55%, transparent 100%);
  pointer-events: none;
}

/* All pages with a page-header hero: header stays transparent */
body:not(.home) .ioh-site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* On scroll: subtle top gradient for readability */
.ioh-site-header.scrolled {
  background: linear-gradient(to bottom, rgba(26, 20, 18, 0.60) 0%, transparent 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.ioh-header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 120px;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}

.ioh-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  order: 2;
  margin: 0 20px;
}

/* Ortada Logo (merkez elemanı) */
.ioh-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: opacity var(--ioh-transition);
  width: 160px;
  height: 130px;
}

.ioh-brand:hover {
  opacity: 0.85;
}

.ioh-brand-logo {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 130px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
  border-radius: 0;
  mix-blend-mode: normal;
}

/* Always show standard logo */
.ioh-brand-logo--default {
  display: block !important;
}

.ioh-brand-logo--white {
  display: none !important;
}

.ioh-site-header.scrolled .ioh-brand-logo {
  height: 100px;
}

.ioh-site-header.scrolled .ioh-brand {
  height: 100px;
}

.ioh-header-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.ioh-header-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 244, 216, 0.25);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.14) 0%, transparent 50%),
    linear-gradient(180deg, #d8c8a2 0%, #c9b386 20%, #b39b6b 52%, #9c8154 85%, #8f7950 100%);
  color: #fff;
  box-shadow:
    inset 0  1px 0 rgba(255, 246, 224, 0.40),
    inset 0 -1px 0 rgba(58, 42, 20, 0.35),
    0 3px 10px rgba(0, 0, 0, 0.22),
    0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ioh-header-social a svg {
  position: relative;
  z-index: 4;
}

.ioh-header-social a:hover {
  transform: translateY(-2px) scale(1.08);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.18) 0%, transparent 50%),
    linear-gradient(180deg, #e3d4b1 0%, #d2be94 20%, #c1ab7d 52%, #ab9161 85%, #9c8154 100%);
  color: #fff;
  box-shadow:
    inset 0  1px 0 rgba(255, 246, 224, 0.50),
    inset 0 -1px 0 rgba(58, 42, 20, 0.30),
    0 6px 18px rgba(179, 155, 107, 0.40),
    0 2px 6px rgba(0, 0, 0, 0.15);
}

.ioh-site-header.scrolled .ioh-header-social {
  margin-top: 2px;
}

.ioh-site-header.scrolled .ioh-header-inner {
  min-height: 80px;
}

/* Sol ve Sağ Navigasyon */
.ioh-nav-left {
  order: 1;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.ioh-nav-right {
  order: 3;
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

/* Mobil menü gizli (desktop'ta) */
.ioh-nav-mobile {
  display: none;
}

/* Navigation ortak */
.ioh-nav .menu,
.ioh-nav ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ioh-nav a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 0;
  font-family: var(--ioh-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42), 0 1px 2px rgba(0, 0, 0, 0.45);
}

.ioh-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.ioh-nav .current-menu-item > a {
  background: var(--ioh-gold);
  color: var(--ioh-bg-dark);
  text-shadow: none;
}

.ioh-site-header.scrolled .ioh-nav a {
  color: #fff;
}

.ioh-site-header.scrolled .ioh-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.ioh-site-header.scrolled .ioh-nav .current-menu-item > a {
  background: var(--ioh-gold);
  color: var(--ioh-bg-dark);
  text-shadow: none;
}

/* Hamburger Menu Toggle */
.ioh-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(26, 20, 18, 0.55);
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 10px;
  z-index: 101;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.ioh-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 0;
  transition: all 0.3s ease;
}

.ioh-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.ioh-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.ioh-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.ioh-menu-toggle.active {
  background: rgba(26, 20, 18, 0.08);
}

.ioh-menu-toggle.active span {
  background: var(--ioh-bg-dark);
}

/* ── Mobile Booking – 3D Prismatic Design ── */
.ioh-mobile-booking {
  display: none;
  position: relative;
  overflow: hidden;
  font-family: var(--ioh-font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  isolation: isolate;
}

/* Animated diagonal shine sweep */
.ioh-mb__shine,
.ioh-shine-sweep {
  position: absolute;
  top: -50%;
  left: -80%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.18) 42%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0.18) 58%,
    transparent 62%
  );
  transform: skewX(-18deg);
  animation: mbShine 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes mbShine {
  0%, 100% { left: -80%; opacity: 0; }
  10%      { opacity: 1; }
  60%      { left: 140%; opacity: 1; }
  70%, 100% { left: 140%; opacity: 0; }
}

/* Edge highlights for prismatic / faceted look */
.ioh-mb__edge {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.ioh-mb__edge--top {
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 200, 160, 0.45) 20%,
    rgba(255, 230, 200, 0.7)  50%,
    rgba(255, 200, 160, 0.45) 80%,
    transparent 100%
  );
}

.ioh-mb__edge--bottom {
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(80, 10, 20, 0.6) 30%,
    rgba(60, 5, 12, 0.8) 50%,
    rgba(80, 10, 20, 0.6) 70%,
    transparent 100%
  );
}

.ioh-mb__edge--left {
  top: 0; bottom: 0; left: 0;
  width: 1px;
  background: linear-gradient(180deg,
    rgba(255, 220, 180, 0.5) 0%,
    rgba(200, 100, 80, 0.3) 50%,
    rgba(60, 5, 12, 0.5)    100%
  );
}

.ioh-mb__edge--right {
  top: 0; bottom: 0; right: 0;
  width: 1px;
  background: linear-gradient(180deg,
    rgba(255, 220, 180, 0.4) 0%,
    rgba(200, 100, 80, 0.25) 50%,
    rgba(60, 5, 12, 0.4)    100%
  );
}

/* Text + icon layer */
.ioh-mb__text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.ioh-mb__icon {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

@keyframes mbGlow {
  0%   { opacity: 0.5; transform: scale(0.92); }
  100% { opacity: 1;   transform: scale(1.06); }
}

@media (min-width: 981px) {
  .ioh-mobile-booking {
    display: none !important;
  }
}

/* ========================================
   FULLSCREEN HERO
   ======================================== */
.ioh-hero-fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ioh-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ioh-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1);    }
  100% { transform: scale(1.08); }
}

.ioh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 20, 18, 0.45) 0%,
    rgba(26, 20, 18, 0.25) 40%,
    rgba(26, 20, 18, 0.55) 100%
  );
  z-index: 1;
}

.ioh-hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 120px 24px 80px;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.ioh-hero-eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
  font-family: var(--ioh-font-display);
  font-size: 0.98rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ioh-gold-light);
  padding: 10px 28px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.ioh-hero-eyebrow span:last-child {
  letter-spacing: 0.18em;
  opacity: 1;
}

.ioh-hero-title {
  font-family: var(--ioh-font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--ioh-gold-light);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.ioh-hero-title em {
  font-style: italic;
  color: var(--ioh-gold-light);
}

.ioh-hero-title-main {
  color: var(--ioh-gold-light);
}

.ioh-hero-title-era {
  display: inline-block;
  margin-top: 8px;
  font-size: inherit;
  font-weight: inherit;
  font-style: italic;
  color: var(--ioh-gold-light);
}

.ioh-hero-subtitle {
  font-family: var(--ioh-font-display);
  font-size: 1.28rem;
  font-style: italic;
  font-weight: 600;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
  margin-inline: auto;
}

.ioh-hero-actions .ioh-btn {
  font-family: var(--ioh-font-display);
}

.ioh-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.ioh-hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.ioh-scroll-arrow {
  width: 2px;
  height: 24px;
  background: rgba(255, 255, 255, 0.4);
  margin: 8px auto 0;
  border-radius: 0;
  position: relative;
}

.ioh-scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   BUTONLAR
   ======================================== */
.ioh-btn {
  display: inline-block;
  font-family: var(--ioh-font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: 0;
  padding: 13px 28px;
  transition: all 0.35s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.ioh-btn--shimmer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ioh-btn--shimmer .ioh-btn__label {
  position: relative;
  z-index: 4;
}

.ioh-btn.ioh-btn--prismatic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 15px 30px 16px;
  color: #fff;
  border-radius: 3px;
  border: 1px solid rgba(179, 155, 107, 0.38);
  border-top-color: rgba(255, 244, 216, 0.34);
  border-bottom-color: rgba(58, 42, 20, 0.5);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 40%
    ),
    linear-gradient(
      180deg,
      #d8c8a2 0%,
      #c9b386 18%,
      #b39b6b 45%,
      #9c8154 75%,
      #7b633d 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 224, 0.4),
    inset 0 2px 4px rgba(230, 209, 164, 0.18),
    inset 0 -1px 0 rgba(58, 42, 20, 0.5),
    inset 0 -2px 6px rgba(46, 33, 15, 0.22),
    inset 1px 0 0 rgba(242, 222, 180, 0.22),
    inset -1px 0 0 rgba(216, 189, 138, 0.14),
    0 4px 0 #6d5634,
    0 5px 1px rgba(84, 64, 36, 0.4),
    0 8px 24px rgba(179, 155, 107, 0.36),
    0 2px 8px rgba(143, 121, 80, 0.28);
}

.ioh-btn.ioh-btn--prismatic:hover,
.ioh-btn.ioh-btn--prismatic:focus {
  color: #fff;
  border-color: rgba(179, 155, 107, 0.42);
  border-top-color: rgba(255, 248, 230, 0.5);
  border-bottom-color: rgba(58, 42, 20, 0.5);
  transform: translateY(-1px);
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.16) 0%,
      transparent 40%
    ),
    linear-gradient(
      180deg,
      #e3d4b1 0%,
      #d2be94 18%,
      #c1ab7d 45%,
      #ab9161 75%,
      #8f7950 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 230, 0.52),
    inset 0 2px 4px rgba(233, 214, 175, 0.22),
    inset 0 -1px 0 rgba(58, 42, 20, 0.5),
    inset 0 -2px 6px rgba(46, 33, 15, 0.22),
    inset 1px 0 0 rgba(244, 226, 189, 0.24),
    inset -1px 0 0 rgba(223, 198, 149, 0.18),
    0 5px 0 #6d5634,
    0 6px 2px rgba(84, 64, 36, 0.4),
    0 12px 32px rgba(179, 155, 107, 0.42),
    0 4px 12px rgba(143, 121, 80, 0.32);
}

.ioh-btn.ioh-btn--prismatic:active {
  color: #fff;
  transform: translateY(2px);
  box-shadow:
    inset 0 1px 0 rgba(233, 214, 175, 0.28),
    inset 0 -1px 0 rgba(58, 42, 20, 0.6),
    inset 0 2px 8px rgba(46, 33, 15, 0.25),
    0 1px 0 #6d5634,
    0 2px 4px rgba(84, 64, 36, 0.28),
    0 4px 10px rgba(143, 121, 80, 0.2);
}

.ioh-btn-primary {
  background: var(--ioh-primary);
  color: #fff;
  border-color: var(--ioh-primary);
}

.ioh-btn-primary:hover {
  background: var(--ioh-primary-dark);
  border-color: var(--ioh-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 26, 40, 0.3);
}

.ioh-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.ioh-btn-outline:hover {
  background: #fff;
  color: var(--ioh-text);
  border-color: #fff;
  transform: translateY(-2px);
}

.ioh-section-dark .ioh-btn-primary {
  background: var(--ioh-primary);
  border-color: var(--ioh-primary);
  color: #fff;
}

.ioh-section-dark .ioh-btn-primary:hover {
  background: var(--ioh-primary-dark);
  border-color: var(--ioh-primary-dark);
  box-shadow: 0 8px 24px rgba(122, 26, 40, 0.3);
}

/* ========================================
   KARTLAR
   ======================================== */
.ioh-card {
  background: var(--ioh-surface);
  border-radius: var(--ioh-radius-lg);
  border: 1px solid var(--ioh-border-light);
  box-shadow: var(--ioh-shadow);
  overflow: hidden;
  transition: all var(--ioh-transition);
}

.ioh-card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--ioh-shadow-hover);
}

.ioh-card-img-wrap {
  overflow: hidden;
}

.ioh-card-img-wrap .ioh-media {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ioh-card-hover:hover .ioh-card-img-wrap .ioh-media {
  transform: scale(1.06);
}

.ioh-content {
  padding: 24px;
}

.ioh-content h3 {
  margin-bottom: 8px;
}

.ioh-media {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.ioh-media-rounded {
  border-radius: var(--ioh-radius-lg);
}

/* Back-link / post-image spacing */
.ioh-card-img-wrap + .ioh-content,
.ioh-card-img-wrap:last-child {
  margin-bottom: 0;
}

.ioh-content + .ioh-card-img-wrap,
article .ioh-card-img-wrap:first-child {
  margin-bottom: 24px;
}

.ioh-back-link {
  margin-top: 12px;
}

/* ========================================
   GRID SISTEMI
   ======================================== */
.ioh-grid {
  display: grid;
  gap: 24px;
}

.ioh-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ioh-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ioh-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ========================================
   SPLIT LAYOUT (Cift Sutunlu)
   ======================================== */
.ioh-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ioh-split-aligned {
  align-items: center;
}

.ioh-split-text {
  padding: 16px 0;
}

.ioh-split-text p {
  margin-top: 12px;
  line-height: 1.8;
}

.ioh-split-text .ioh-btn {
  margin-top: 24px;
}

.ioh-split-image {
  border-radius: var(--ioh-radius-lg);
  overflow: hidden;
  box-shadow: var(--ioh-shadow-lg);
}

.ioh-split-image .ioh-media {
  border-radius: 0;
}

/* ========================================
   GALERI
   ======================================== */
.ioh-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ioh-gallery-item {
  border-radius: var(--ioh-radius);
  overflow: hidden;
  box-shadow: var(--ioh-shadow);
  cursor: pointer;
  transition: all var(--ioh-transition);
}

.ioh-gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--ioh-shadow-hover);
}

.ioh-gallery-item .ioh-media {
  aspect-ratio: 1 / 1;
  transition: transform 0.6s ease;
}

.ioh-gallery-item:hover .ioh-media {
  transform: scale(1.08);
}

.ioh-gallery + .ioh-center {
  margin-top: 36px;
}

.ioh-gallery-count {
  opacity: 1;
  font-weight: 400;
  margin-left: 6px;
}

.ioh-lightbox-open {
  overflow: hidden;
}

.ioh-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ioh-lightbox[hidden] {
  display: none;
}

.ioh-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(6px);
}

.ioh-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.ioh-lightbox__figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ioh-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 85vh;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.ioh-lightbox__close,
.ioh-lightbox__nav {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: background var(--ioh-transition), transform var(--ioh-transition), opacity var(--ioh-transition);
}

.ioh-lightbox__close:hover,
.ioh-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.ioh-lightbox__close:disabled,
.ioh-lightbox__nav:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.ioh-lightbox__close {
  position: absolute;
  top: -56px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}

.ioh-lightbox__nav {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}

/* ========================================
   SAYFA BANNER (iç sayfalar için)
   ======================================== */
.ioh-page-banner,
.ioh-page-header {
  position: relative;
  padding: 220px 0 100px;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ioh-bg-dark);
  color: var(--ioh-text-light);
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}



/* Dark overlay for readability over background images */
.ioh-page-banner::before,
.ioh-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 20, 18, 0.7) 0%,
    rgba(26, 20, 18, 0.55) 50%,
    rgba(26, 20, 18, 0.75) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Content sits above the overlay */
.ioh-page-banner > *,
.ioh-page-header > * {
  position: relative;
  z-index: 1;
}

.ioh-page-banner .ioh-eyebrow,
.ioh-page-header .ioh-eyebrow {
  font-family: var(--ioh-font-display);
  font-size: 0.82rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ioh-gold-light);
}

.ioh-page-banner h1,
.ioh-page-header h1 {
  font-family: var(--ioh-font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.ioh-page-banner p,
.ioh-page-header p {
  font-family: var(--ioh-font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  max-width: 600px;
  margin-inline: auto;
  color: var(--ioh-text-light);
}

.ioh-page-banner .ioh-muted,
.ioh-page-header .ioh-muted {
  color: var(--ioh-text-light);
}

.ioh-page-banner .ioh-type-filter,
.ioh-page-header .ioh-type-filter {
  justify-content: center;
}

.ioh-page-banner .ioh-tag,
.ioh-page-header .ioh-tag {
  background: rgba(201, 168, 76, 0.2);
  color: var(--ioh-primary);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.ioh-page-banner .ioh-tag:hover,
.ioh-page-header .ioh-tag:hover {
  background: var(--ioh-gold);
  color: var(--ioh-bg-dark);
}

/* ========================================
   FOOTER
   ======================================== */
.ioh-site-footer {
  margin-top: 0;
  padding: 72px 0 0;
  background: #050505;
  color: #f5f0eb;
  position: relative;
  z-index: 1;
}

.ioh-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr) minmax(420px, 1.38fr);
  gap: 20px;
  padding: 24px 0 56px;
  align-items: start;
}

.ioh-footer-col {
  min-width: 0;
}

.ioh-footer-brand-wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 26px;
}

.ioh-footer-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(179, 155, 107, 0), rgba(179, 155, 107, 0.95) 16%, rgba(199, 180, 138, 0.95) 50%, rgba(179, 155, 107, 0.95) 84%, rgba(179, 155, 107, 0));
}

/* Footer Brand Column */
.ioh-footer-logo {
  height: 138px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  mix-blend-mode: normal;
  border-radius: 0;
  filter: drop-shadow(0 0 24px rgba(179, 155, 107, 0.12));
}

.ioh-section-dark .ioh-card {
  background: var(--ioh-surface);
  border-color: var(--ioh-border-light);
}

.ioh-section-dark .ioh-card h2,
.ioh-section-dark .ioh-card h3 {
  color: var(--ioh-text);
}

.ioh-section-dark .ioh-card p,
.ioh-section-dark .ioh-card .ioh-muted {
  color: var(--ioh-muted);
}

.ioh-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.ioh-footer-brand p {
  color: #c7b48a;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 0;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ioh-footer-nav--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 26px;
  padding: 32px 0;
}

.ioh-footer-nav--inline a {
  color: #f5f0eb;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ioh-footer-social {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.ioh-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(179, 155, 107, 0.45);
  background: rgba(179, 155, 107, 0.06);
  color: #f5f0eb;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ioh-footer-social a svg {
  position: relative;
  z-index: 4;
}

.ioh-footer-social a:hover {
  background: var(--ioh-gold);
  color: #050505;
  border-color: var(--ioh-gold);
}

/* Footer Headings */
.ioh-footer-heading {
  font-family: var(--ioh-font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: #b39b6b;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

.ioh-footer-heading--spaced {
  margin-top: 32px;
}

/* Footer Nav Links */
.ioh-footer-nav {
  padding: 0;
  margin: 0;
}

.ioh-footer-nav a {
  color: #f5f0eb;
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.ioh-footer-nav a:hover {
  color: var(--ioh-gold-light);
}

/* Footer Contact List */
.ioh-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ioh-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.6;
}

.ioh-footer-icon {
  font-size: 1.1rem;
  color: var(--ioh-gold-light);
  flex-shrink: 0;
  margin-top: 1px;
}

.ioh-footer-contact a {
  color: #f5f0eb;
  transition: color 0.3s ease;
}

.ioh-footer-contact a:hover {
  color: var(--ioh-gold-light);
}

.ioh-footer-contact span,
.ioh-footer-contact div {
  color: rgba(245, 240, 235, 0.88);
}

/* Footer Info List */
.ioh-footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ioh-footer-info li {
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 8px;
  color: rgba(245, 240, 235, 0.88);
  font-weight: 500;
}

.ioh-footer-info strong {
  color: #f5f0eb;
  font-weight: 700;
  font-size: inherit;
  display: inline;
  margin: 0;
}

/* Footer Map */
.ioh-footer-map {
  border: 1px solid rgba(179, 155, 107, 0.4);
  border-radius: 0;
  overflow: hidden;
  background: #111111;
  width: 100%;
}

.ioh-footer-map iframe {
  display: block;
  filter: grayscale(0.12) contrast(1.02);
  width: 100%;
}

.ioh-footer-nearby {
  font-size: 0.86rem;
  color: #000000;
  font-weight: 600;
}

.ioh-footer-nearby p {
  margin-bottom: 6px;
  color: #000000;
}

.ioh-footer-nearby strong {
  font-size: inherit;
  display: inline;
  margin: 0;
  color: #000000;
}

.ioh-footer-nearby span {
  display: inline-block;
  padding: 3px 8px;
  margin: 2px 4px 2px 0;
  background: rgba(47, 35, 27, 0.08);
  border-radius: 0;
  font-size: 0.78rem;
}

/* Footer Bottom */
.ioh-footer-bottom {
  padding: 24px 0;
  background: #020202;
  margin-top: 0;
  border-top: 1px solid rgba(179, 155, 107, 0.3);
}

.ioh-footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  text-align: center;
}

.ioh-site-footer .ioh-meta {
  color: rgba(245, 240, 235, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.7;
}

.ioh-footer-social-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.ioh-footer-map-col {
  width: 100%;
}

.ioh-footer-tag {
  color: #f5f0eb;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

/* ========================================
   FORM & ILETISIM
   ======================================== */
.ioh-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ioh-contact-grid .ioh-card {
  text-align: center;
}

.ioh-contact-card--phone {
  order: 1;
}

.ioh-contact-card--email {
  order: 2;
}

.ioh-contact-card--address {
  order: 3;
}

.ioh-contact-card--messaging {
  order: 4;
}

.ioh-contact-icon {
  color: var(--ioh-primary);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.ioh-map-wrap {
  border-radius: var(--ioh-radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.ioh-contact-messaging {
  grid-column: 1 / -1;
  text-align: center;
}

.ioh-contact-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.ioh-contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 18px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--ioh-radius);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 2px 4px rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28),
    inset 0 -3px 8px rgba(0, 0, 0, 0.18),
    0 4px 0 var(--ioh-contact-shadow-solid, rgba(26, 20, 18, 0.35)),
    0 10px 28px rgba(20, 18, 14, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ioh-contact-action:hover,
.ioh-contact-action:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 2px 5px rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    inset 0 -3px 8px rgba(0, 0, 0, 0.2),
    0 6px 0 var(--ioh-contact-shadow-solid, rgba(26, 20, 18, 0.35)),
    0 14px 34px rgba(20, 18, 14, 0.26);
  filter: saturate(1.08) brightness(1.04);
}

.ioh-contact-action:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    inset 0 2px 8px rgba(0, 0, 0, 0.2),
    0 1px 0 var(--ioh-contact-shadow-solid, rgba(26, 20, 18, 0.35)),
    0 4px 14px rgba(20, 18, 14, 0.16);
}

.ioh-contact-action__content {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ioh-contact-action svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
}

.ioh-contact-action iconify-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-block;
}

.ioh-contact-action--whatsapp {
  --ioh-contact-shadow-solid: #12753d;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16) 0%, transparent 40%),
    linear-gradient(180deg, #2ccc6a 0%, #24b95e 20%, #16944b 55%, #10723a 100%);
  border-top-color: rgba(214, 255, 228, 0.38);
  border-bottom-color: rgba(9, 68, 34, 0.65);
}

.ioh-contact-action--telegram {
  --ioh-contact-shadow-solid: #0f659e;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16) 0%, transparent 40%),
    linear-gradient(180deg, #4fc7ff 0%, #33b0ee 20%, #1b8fd0 55%, #106ba8 100%);
  border-top-color: rgba(214, 242, 255, 0.38);
  border-bottom-color: rgba(9, 56, 88, 0.65);
}

.ioh-contact-action--viber {
  --ioh-contact-shadow-solid: #4f2b84;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16) 0%, transparent 40%),
    linear-gradient(180deg, #9c78db 0%, #865dc7 22%, #7046b0 55%, #55318d 100%);
  border-top-color: rgba(238, 225, 255, 0.35);
  border-bottom-color: rgba(51, 26, 88, 0.65);
}

.ioh-contact-action--wechat {
  --ioh-contact-shadow-solid: #356f17;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16) 0%, transparent 40%),
    linear-gradient(180deg, #8ddf55 0%, #74cb40 22%, #57ac2d 55%, #3d851d 100%);
  border-top-color: rgba(236, 255, 220, 0.35);
  border-bottom-color: rgba(32, 72, 12, 0.65);
}

.ioh-contact-prism-shine {
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.14) 42%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0.14) 58%, transparent 62%);
  transform: skewX(-18deg);
  animation: prismShine 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.ioh-contact-prism-edge {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.ioh-contact-prism-edge--top {
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 20%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.35) 80%, transparent 100%);
}

.ioh-contact-prism-edge--bottom {
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 30%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.28) 70%, transparent 100%);
}

.ioh-contact-prism-glow {
  position: absolute;
  inset: -4px -2px;
  z-index: -1;
  filter: blur(8px);
  pointer-events: none;
  animation: prismGlow 3s ease-in-out infinite alternate;
}

.ioh-contact-action--whatsapp .ioh-contact-prism-glow {
  background: radial-gradient(ellipse at center, rgba(37, 211, 102, 0.45) 0%, rgba(25, 146, 70, 0.18) 50%, transparent 80%);
}

.ioh-contact-action--telegram .ioh-contact-prism-glow {
  background: radial-gradient(ellipse at center, rgba(44, 165, 224, 0.45) 0%, rgba(28, 124, 184, 0.18) 50%, transparent 80%);
}

.ioh-contact-action--viber .ioh-contact-prism-glow {
  background: radial-gradient(ellipse at center, rgba(123, 81, 157, 0.42) 0%, rgba(91, 55, 129, 0.18) 50%, transparent 80%);
}

.ioh-contact-action--wechat .ioh-contact-prism-glow {
  background: radial-gradient(ellipse at center, rgba(102, 196, 70, 0.42) 0%, rgba(61, 133, 29, 0.18) 50%, transparent 80%);
}

@keyframes prismShine {
  0%, 100% {
    left: -80%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  55% {
    left: 140%;
    opacity: 1;
  }

  65%, 100% {
    left: 140%;
    opacity: 0;
  }
}

@keyframes prismGlow {
  0% {
    opacity: 0.45;
    transform: scale(0.94);
  }

  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.ioh-contact-hint {
  margin: 18px auto 0;
  max-width: 640px;
  color: var(--ioh-muted);
  font-size: 0.92rem;
}

.ioh-form {
  display: grid;
  gap: 16px;
}

.ioh-form label span {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ioh-muted);
  margin-bottom: 6px;
}

.ioh-form input,
.ioh-form textarea {
  width: 100%;
  border: 1px solid var(--ioh-border);
  border-radius: var(--ioh-radius);
  padding: 14px 16px;
  font: inherit;
  font-size: 0.95rem;
  background: var(--ioh-bg);
  color: var(--ioh-text);
  transition: all 0.3s ease;
}

.ioh-form input:focus,
.ioh-form textarea:focus {
  outline: none;
  border-color: var(--ioh-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  background: #fff;
}

.ioh-form textarea {
  min-height: 140px;
  resize: vertical;
}

.ioh-alert {
  margin-bottom: 20px;
  border-radius: var(--ioh-radius);
  padding: 16px 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.08);
  color: var(--ioh-green);
  font-weight: 500;
}

/* ========================================
   TAGLER & SPEC'LER
   ======================================== */
.ioh-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 0;
  background: rgba(201, 168, 76, 0.12);
  color: var(--ioh-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ioh-type-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}

.ioh-type-filter .ioh-tag {
  transition: all 0.3s ease;
}

.ioh-type-filter .ioh-tag:hover {
  background: var(--ioh-gold);
  color: #fff;
}

.ioh-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.ioh-spec-item {
  border: 1px solid var(--ioh-border-light);
  border-radius: var(--ioh-radius);
  background: var(--ioh-bg);
  padding: 12px 14px;
  transition: all 0.3s ease;
}

.ioh-spec-item:hover {
  border-color: var(--ioh-gold);
}

.ioh-spec-item small {
  display: block;
  color: var(--ioh-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ioh-spec-item strong {
  display: block;
  margin-top: 4px;
  font-family: var(--ioh-font-display);
  font-size: 1rem;
}

.ioh-location-note {
  display: block;
  margin-top: 8px;
  color: var(--ioh-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.ioh-location-intro {
  margin-bottom: 32px;
}

.ioh-location-points {
  margin-top: 24px;
}

.ioh-location-hero .ioh-media {
  aspect-ratio: 4 / 5;
}

.ioh-location-gallery .ioh-media {
  aspect-ratio: 4 / 3;
}

.ioh-location-gallery {
  align-content: start;
}

.ioh-location-gallery .ioh-card {
  height: 100%;
}

.ioh-attraction-card .ioh-content {
  padding-top: 18px;
}

.ioh-about-mobile-logo {
  display: none !important;
  width: min(220px, 60%);
  height: auto;
  margin: 0 auto 24px;
}

.ioh-stat-card {
  text-align: center;
}

.ioh-stat-card h3 {
  color: var(--ioh-primary);
  font-size: 2rem;
}

.ioh-nearby-card {
  text-align: center;
}

.ioh-nearby-distance {
  color: var(--ioh-primary);
  font-size: 0.75rem;
}

/* ========================================
   BLOG POST - Legacy
   ======================================== */
.ioh-post {
  padding: 24px;
}

.ioh-post + .ioh-post {
  margin-top: 20px;
}

.ioh-meta {
  font-size: 0.86rem;
  color: var(--ioh-muted);
}

.ioh-page-header .ioh-meta {
  color: var(--ioh-text-light);
}

/* ========================================
   BLOG SAYFASI - Modern Tasarim
   ======================================== */

/* Hero Banner (Blog) */
.ioh-blog-hero {
  padding: 220px 0 100px;
}

.ioh-blog-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ioh-blog-hero-desc {
  font-size: 1.15rem;
  color: var(--ioh-text-light);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.75;
}

.ioh-blog-hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--ioh-gold), var(--ioh-gold-light));
  border-radius: 0;
  margin: 28px auto 0;
  opacity: 0.7;
}

/* Genel Blog Alani */
.ioh-blog-section {
  padding: 80px 0;
}

/* ── Featured Post ── */
.ioh-blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--ioh-surface);
  box-shadow: 0 8px 48px rgba(26,20,18,0.10);
  border: 1px solid var(--ioh-border-light);
  margin-bottom: 64px;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.ioh-blog-featured:hover {
  box-shadow: 0 20px 64px rgba(26,20,18,0.15);
  transform: translateY(-4px);
}

.ioh-blog-featured-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 440px;
}

.ioh-blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.ioh-blog-featured:hover .ioh-blog-featured-img {
  transform: scale(1.05);
}

.ioh-blog-featured-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--ioh-gold);
  color: var(--ioh-bg-dark);
  font-family: var(--ioh-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.ioh-blog-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 48px;
}

.ioh-blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ioh-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ioh-blog-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ioh-gold);
  flex-shrink: 0;
}

.ioh-blog-featured-title {
  font-family: var(--ioh-font-display);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 700;
  color: var(--ioh-text);
  line-height: 1.25;
  margin-bottom: 18px;
}

.ioh-blog-featured-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ioh-blog-featured-title a:hover {
  color: var(--ioh-primary);
}

.ioh-blog-featured-excerpt {
  font-size: 1rem;
  color: var(--ioh-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  flex: 1;
}

.ioh-blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ioh-primary);
  color: #fff;
  font-family: var(--ioh-font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  border-radius: 0;
  transition: all 0.35s ease;
  align-self: flex-start;
  text-decoration: none;
}

.ioh-blog-read-btn:hover {
  background: var(--ioh-primary-dark);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  color: #fff;
}

.ioh-blog-read-btn svg {
  transition: transform 0.3s ease;
}

.ioh-blog-read-btn:hover svg {
  transform: translateX(4px);
}

/* ── Grid Header ── */
.ioh-blog-grid-header {
  margin-bottom: 28px;
}

/* ── Grid Articles ── */
.ioh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.ioh-blog-card {
  background: var(--ioh-surface);
  border-radius: var(--ioh-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ioh-border-light);
  box-shadow: var(--ioh-shadow);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.ioh-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ioh-shadow-hover);
}

.ioh-blog-card-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.ioh-blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}

.ioh-blog-card:hover .ioh-blog-card-img {
  transform: scale(1.07);
}

.ioh-blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(26,20,18,0.25) 100%
  );
  transition: opacity 0.4s ease;
  opacity: 0;
}

.ioh-blog-card:hover .ioh-blog-card-overlay {
  opacity: 1;
}

.ioh-blog-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ioh-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ioh-primary);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ioh-blog-card-meta .ioh-blog-dot {
  width: 6px;
  height: 6px;
}

.ioh-blog-card-title {
  font-family: var(--ioh-font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-weight: 700;
  color: var(--ioh-text);
  line-height: 1.3;
  margin-bottom: 10px;
}

.ioh-blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ioh-blog-card-title a:hover {
  color: var(--ioh-primary);
}

.ioh-blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--ioh-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.ioh-blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ioh-primary);
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.ioh-blog-card-link:hover {
  color: var(--ioh-primary-dark);
  gap: 10px;
}

.ioh-blog-card-link svg {
  transition: transform 0.3s ease;
}

.ioh-blog-card-link:hover svg {
  transform: translateX(3px);
}

/* ── Pagination ── */
.ioh-blog-pagination {
  margin-top: 16px;
  text-align: center;
}

.ioh-blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ioh-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ioh-muted);
  background: var(--ioh-surface);
  border: 1px solid var(--ioh-border);
  text-decoration: none;
  transition: all 0.3s ease;
}

.ioh-blog-pagination .page-numbers:hover,
.ioh-blog-pagination .page-numbers.current {
  background: var(--ioh-primary);
  border-color: var(--ioh-primary);
  color: #fff;
}

/* ── Empty State ── */
.ioh-blog-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--ioh-muted);
}

.ioh-blog-empty-icon {
  font-size: 3rem;
  color: var(--ioh-primary);
  margin-bottom: 20px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ioh-blog-featured {
    grid-template-columns: 1fr;
  }
  .ioh-blog-featured-img-wrap {
    min-height: 260px;
  }
  .ioh-blog-featured-body {
    padding: 36px 32px;
  }
  .ioh-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .ioh-blog-grid {
    grid-template-columns: 1fr;
  }
  .ioh-blog-featured-body {
    padding: 28px 22px;
  }
}

/* ========================================
   LISTE
   ======================================== */
.ioh-list {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
}

.ioh-list li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.ioh-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ioh-gold);
}

.ioh-room-amenities {
  padding: 32px;
}

.ioh-room-amenities-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin-top: 0;
}

.ioh-room-amenities-list li {
  margin-bottom: 0;
  padding: 14px 18px 14px 42px;
  border: 1px solid var(--ioh-border-light);
  background: linear-gradient(180deg, #fff 0%, #fbf8f4 100%);
  min-height: 56px;
  display: flex;
  align-items: center;
}

.ioh-room-amenities-list li::before {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* ========================================
   RESPONSIVE - MOBILE FIRST APPROACH
   ======================================== */
/* Orta boy ekranlar - menü linklerini sıkıştır */
@media (max-width: 1200px) and (min-width: 981px) {
  .ioh-nav a {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .ioh-brand-logo {
    height: 110px;
  }

  .ioh-brand {
    width: 135px;
    height: 110px;
  }

  .ioh-brand-wrap {
    margin: 0 12px;
  }
}

@media (max-width: 980px) {
  .ioh-card .ioh-btn {
    padding: 10px 20px;
    font-size: 0.82rem;
  }

  .ioh-card .ioh-content .ioh-btn,
  .ioh-card .ioh-btn {
    margin-top: 10px;
  }

  .ioh-about-mobile-logo {
    display: block !important;
  }

  .ioh-header-inner.ioh-container {
    width: 100%;
    padding: 0;
  }

  .ioh-header-social {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 72px;
    top: 50%;
    transform: translateY(-50%);
    gap: 8px;
    margin-top: 0;
    z-index: 102;
  }

  .ioh-header-social a {
    width: 28px;
    height: 28px;
  }

  .ioh-header-social svg {
    width: 14px;
    height: 14px;
  }

  .ioh-menu-toggle {
    display: flex;
    order: 3;
    margin-left: 0;
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
  }

  .ioh-mobile-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    min-width: 92px;
    padding: 8px 10px 9px;
    font-size: 0.64rem;
    z-index: 101;
    white-space: nowrap;
    text-align: center;
    border-radius: 3px;

    /* ── Prismatic 3D Gradient ── */
    background:
      linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.12) 0%,
        transparent 40%
      ),
      linear-gradient(
        180deg,
        #d8c8a2 0%,       /* top: bright champagne highlight */
        #c9b386 18%,
        #b39b6b 45%,      /* mid: brand gold-beige */
        #9c8154 75%,
        #7b633d 100%      /* bottom: deep bronze shadow */
      );

    /* ── Beveled / Faceted Edges ── */
    box-shadow:
      /* Inner top highlight – prismatic shimmer */
      inset 0  1px 0 rgba(255, 246, 224, 0.40),
      inset 0  2px 4px rgba(230, 209, 164, 0.18),
      /* Inner bottom shadow – depth */
      inset 0 -1px 0 rgba(58, 42, 20, 0.50),
      inset 0 -2px 6px rgba(46, 33, 15, 0.22),
      /* Inner left/right subtle bevels */
      inset  1px 0 0 rgba(242, 222, 180, 0.22),
      inset -1px 0 0 rgba(216, 189, 138, 0.14),
      /* 3D lift shadow */
      0 4px 0 #6d5634,
      0 5px 1px rgba(84, 64, 36, 0.4),
      /* Ambient glow */
      0 8px 24px rgba(179, 155, 107, 0.36),
      0 2px 8px  rgba(143, 121, 80, 0.28);

    /* ── Border: subtle facet line ── */
    border: 1px solid rgba(179, 155, 107, 0.38);
    border-top-color: rgba(255, 244, 216, 0.34);
    border-bottom-color: rgba(58, 42, 20, 0.50);

    transition: all 0.2s ease;
  }

  /* ── Hover & Active (press) ── */
  .ioh-mobile-booking:hover,
  .ioh-mobile-booking:focus {
    transform: translateY(calc(-50% - 1px));
    background:
      linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.16) 0%,
        transparent 40%
      ),
      linear-gradient(
        180deg,
        #e3d4b1 0%,
        #d2be94 18%,
        #c1ab7d 45%,
        #ab9161 75%,
        #8f7950 100%
      );
    box-shadow:
      inset 0  1px 0 rgba(255, 248, 230, 0.52),
      inset 0  2px 4px rgba(233, 214, 175, 0.22),
      inset 0 -1px 0 rgba(58, 42, 20, 0.50),
      inset 0 -2px 6px rgba(46, 33, 15, 0.22),
      inset  1px 0 0 rgba(244, 226, 189, 0.24),
      inset -1px 0 0 rgba(223, 198, 149, 0.18),
      0 5px 0 #6d5634,
      0 6px 2px rgba(84, 64, 36, 0.4),
      0 12px 32px rgba(179, 155, 107, 0.42),
      0 4px 12px rgba(143, 121, 80, 0.32);
  }

  .ioh-mobile-booking:active {
    transform: translateY(calc(-50% + 2px));
    box-shadow:
      inset 0  1px 0 rgba(233, 214, 175, 0.28),
      inset 0 -1px 0 rgba(58, 42, 20, 0.60),
      inset 0  2px 8px rgba(46, 33, 15, 0.25),
      0 1px 0 #6d5634,
      0 2px 8px rgba(143, 121, 80, 0.25);
  }

  /* Desktop sol/sağ menüler gizle */
  .ioh-nav-left,
  .ioh-nav-right {
    display: none;
  }

  /* Mobil menü göster */
  .ioh-nav-mobile {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    right: auto;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    padding: 100px 32px 40px;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
  }

  .ioh-nav-mobile.open {
    left: 0;
    right: auto;
  }

  .ioh-nav-mobile .menu,
  .ioh-nav-mobile ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .ioh-nav-mobile a,
  .ioh-site-header.scrolled .ioh-nav-mobile a {
    display: block;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--ioh-radius);
    color: var(--ioh-bg-dark);
    text-shadow: none;
  }

  .ioh-nav-mobile a:hover,
  .ioh-site-header.scrolled .ioh-nav-mobile a:hover {
    background: rgba(26, 20, 18, 0.08);
    color: var(--ioh-bg-dark);
  }

  .ioh-nav-mobile .current-menu-item > a,
  .ioh-site-header.scrolled .ioh-nav-mobile .current-menu-item > a {
    background: var(--ioh-gold);
    color: var(--ioh-bg-dark);
  }

  .ioh-brand {
    order: 2;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
  }

  .ioh-brand-logo {
    height: 92px;
  }

  .ioh-header-inner {
    min-height: 110px;
    justify-content: space-between;
    position: relative;
  }

  /* Anasayfa: scroll öncesi daha büyük logo */
  body.home .ioh-site-header:not(.scrolled) .ioh-brand {
    width: 160px;
    height: 130px;
  }

  body.home .ioh-site-header:not(.scrolled) .ioh-brand-logo {
    height: 130px;
  }

  body.home .ioh-site-header:not(.scrolled) .ioh-header-inner {
    min-height: 130px;
  }

  /* Mobilde header her zaman saydam */
  .ioh-site-header,
  body:not(.home) .ioh-site-header,
  .ioh-site-header.scrolled {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }

  .ioh-site-header::before {
    background: linear-gradient(to bottom, rgba(26, 20, 18, 0.5) 0%, rgba(26, 20, 18, 0.2) 60%, transparent 100%);
  }

  /* Scroll sonrası: daha küçük logo */
  .ioh-site-header.scrolled .ioh-brand-logo {
    height: 80px;
  }

  .ioh-site-header.scrolled .ioh-brand {
    width: 100px;
    height: 80px;
  }

  .ioh-site-header.scrolled .ioh-header-inner {
    min-height: 80px;
  }

  .ioh-hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .ioh-page-banner h1,
  .ioh-page-header h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .ioh-hero-subtitle {
    font-size: 0.92rem;
  }

  .ioh-page-banner p,
  .ioh-page-header p {
    font-size: 0.92rem;
  }

  .ioh-hero-actions {
    display: none;
  }

  .ioh-hero,
  .ioh-split,
  .ioh-grid-2,
  .ioh-grid-3,
  .ioh-grid-4,
  .ioh-gallery,
  .ioh-contact-grid,
  .ioh-contact-actions,
  .ioh-spec-grid {
    grid-template-columns: 1fr;
  }

  .ioh-contact-card--phone {
    order: 1;
  }

  .ioh-contact-card--messaging {
    order: 2;
  }

  .ioh-contact-card--email {
    order: 3;
  }

  .ioh-contact-card--address {
    order: 4;
  }

  .ioh-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .ioh-section {
    padding: 48px 0;
  }

  .ioh-section-dark,
  .ioh-section-warm {
    padding: 48px 0;
  }

  .ioh-page-header,
  .ioh-page-banner {
    padding: 120px 0 40px;
  }

  .ioh-hero-content {
    padding: 24px;
  }

  .ioh-split {
    gap: 24px;
  }

  .ioh-content {
    padding: 20px;
  }

  .ioh-room-amenities {
    padding: 24px;
  }

  .ioh-room-amenities-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ioh-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ioh-footer-nav--inline {
    gap: 12px 20px;
    padding: 26px 0;
  }

  .ioh-footer-social-panel {
    align-items: center;
    text-align: center;
  }

  .ioh-footer-logo {
    height: 126px;
    margin-inline: auto;
  }

  .ioh-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .ioh-rooms-overlay-section {
    padding: 48px 0;
  }

  .ioh-blog-section {
    padding: 48px 0;
  }

  .ioh-blog-hero {
    padding: 120px 0 40px;
  }
}

@media (max-width: 600px) {
  .ioh-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ioh-lightbox {
    padding: 16px;
  }

  .ioh-lightbox__dialog {
    grid-template-columns: 1fr;
  }

  .ioh-lightbox__close {
    top: -52px;
  }

  .ioh-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .ioh-lightbox__nav--prev {
    left: 8px;
  }

  .ioh-lightbox__nav--next {
    right: 8px;
  }

  .ioh-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .ioh-footer-nav--inline {
    gap: 12px 16px;
  }

  .ioh-footer-contact li {
    justify-content: center;
  }

  .ioh-footer-social-panel,
  .ioh-footer-brand,
  .ioh-footer-brand .ioh-footer-social {
    justify-content: center;
    align-items: center;
  }

  .ioh-footer-nearby {
    text-align: center;
  }

  .ioh-footer-tag {
    font-size: 0.98rem;
  }
}

/* ========================================
   ESKI HERO (uyumluluk - ic sayfalar)
   ======================================== */
.ioh-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 220px 0 100px;
}

.ioh-hero-content {
  padding: 34px;
}

@media (max-width: 980px) {
  .ioh-hero {
    grid-template-columns: 1fr;
    padding: 120px 0 40px;
  }
}

/* ========================================
   SCROLL GIRIS ANIMASYONLARI
   Geri almak icin bu blogun tamamini silin.
   ======================================== */

/* Baslangic durumu: gorulmeden once */
[data-anim] {
  opacity: 0;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* Yonlu baslangic pozisyonlari */
[data-anim="fade-up"]    { transform: translateY(40px); }
[data-anim="fade-down"]  { transform: translateY(-40px); }
[data-anim="fade-left"]  { transform: translateX(-50px); }
[data-anim="fade-right"] { transform: translateX(50px); }
[data-anim="scale-in"]   { transform: scale(0.92); }
[data-anim="fade-in"]    { transform: none; }

/* Gorunur oldugunda: hedef durum */
[data-anim].is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Kademeli gecikme (stagger) - JS tarafindan atanir */
[data-anim][style*="--anim-d"] {
  transition-delay: calc(var(--anim-d, 0) * 1ms);
}

/* Erisilebilik: animasyon istemeyen kullanicilar */
@media (prefers-reduced-motion: reduce) {
  [data-anim] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ======================================== */

/* ========================================
   ODALAR SAYFASI — Full-bleed Overlay Grid
   ======================================== */

.ioh-rooms-overlay-section {
  background: var(--ioh-bg);
  padding: 80px 0;
  position: relative;
  z-index: 0;
}

.ioh-rooms-overlay-inner {
  width: min(1240px, 90vw);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Each row: full-width or half-half */
.ioh-overlay-row {
  display: flex;
  gap: 0;
  min-height: 420px;
}

.ioh-overlay-row--full {
  min-height: 480px;
}

.ioh-overlay-row--half {
  min-height: 420px;
}

/* Individual overlay card */
.ioh-overlay-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 1;
  cursor: pointer;
  text-decoration: none;
  border-radius: 0;
}

/* Photo fills the card */
.ioh-overlay-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ioh-overlay-card:hover .ioh-overlay-card__img {
  transform: scale(1.05);
}

/* Dark overlay — uniform for centered text */
.ioh-overlay-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 18, 0.38);
  transition: background 0.4s ease;
}

.ioh-overlay-card:hover .ioh-overlay-card__overlay {
  background: rgba(26, 20, 18, 0.50);
}

/* Text content — centered */
.ioh-overlay-card__body {
  position: relative;
  z-index: 1;
  padding: 40px 48px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Room title */
.ioh-overlay-card__title {
  font-family: var(--ioh-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  margin: 0 0 20px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.ioh-overlay-row--full .ioh-overlay-card__title {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* "ODAYI İNCELE" button */
.ioh-overlay-card__btn {
  display: inline-block;
  padding: 13px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-family: var(--ioh-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(255, 255, 255, 0.02);
}

.ioh-overlay-card:hover .ioh-overlay-card__btn {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
}

/* Mobile: stack rows vertically */
@media (max-width: 768px) {
  .ioh-rooms-overlay-inner {
    width: min(100%, 90vw);
    gap: 0;
  }

  .ioh-overlay-row--half {
    flex-direction: column;
    min-height: unset;
    gap: 0;
  }

  .ioh-overlay-row--half .ioh-overlay-card {
    min-height: 280px;
  }

  .ioh-overlay-row--full {
    min-height: 320px;
  }

  .ioh-overlay-card__body {
    padding: 24px 20px;
  }

  .ioh-overlay-card__title {
    font-size: clamp(1.4rem, 6vw, 2rem);
    margin-bottom: 14px;
  }
}

/* ========================================
   MOBILE BOTTOM NAVBAR
   ======================================== */
.ioh-mobile-bottom-bar {
  display: none;
}

.ioh-mobile-fab-group {
  display: none;
}

@media (max-width: 980px) {
  .ioh-mobile-fab-group {
    display: block;
  }

  .ioh-mobile-fab {
    position: fixed;
    bottom: 108px;
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    z-index: 1002;
    box-shadow: 0 12px 28px rgba(15, 18, 26, 0.32), 0 4px 12px rgba(15, 18, 26, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: visible;
    isolation: isolate;
  }

  .ioh-mobile-fab:hover,
  .ioh-mobile-fab:focus,
  .ioh-mobile-fab:active {
    transform: translateY(-3px) scale(1.03);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(15, 18, 26, 0.36), 0 6px 16px rgba(15, 18, 26, 0.2);
  }

  .ioh-mobile-fab--call {
    left: 18px;
    background: linear-gradient(180deg, #d8c8a2 0%, #c9b386 20%, #b39b6b 52%, #8f7950 100%);
    border: 1px solid rgba(255, 244, 216, 0.28);
  }

  .ioh-mobile-fab--call::before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background: #b39b6b;
    border-radius: 50%;
    animation: iohFabPulseBorder 1500ms ease-out infinite;
  }

  .ioh-mobile-fab--call::after {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 999px;
    animation: iohFabGlowPulse 2.5s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
  }

  .ioh-mobile-fab--messenger {
    right: 18px;
    background: linear-gradient(180deg, #2ee874 0%, #28d366 22%, #25d366 54%, #17a34a 100%);
    border: 1px solid rgba(180, 255, 210, 0.28);
  }

  .ioh-mobile-fab--messenger.is-telegram {
    background: linear-gradient(180deg, #53cfff 0%, #38b7f4 22%, #2ca5e0 54%, #146b9f 100%);
    border-color: rgba(195, 236, 255, 0.3);
  }

  /* Sonar pulse – expanding & fading circle behind the messenger FAB */
  .ioh-mobile-fab--messenger::before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background: #25d366;
    border-radius: 50%;
    animation: iohFabPulseBorder 1500ms ease-out infinite;
  }

  .ioh-mobile-fab--messenger.is-telegram::before {
    background: #2ca5e0;
  }

  @keyframes iohFabPulseBorder {
    0% {
      transform: translateX(-50%) translateY(-50%) scale(0.95);
      opacity: 0.7;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) scale(1.6);
      opacity: 0;
    }
  }

  .ioh-mobile-fab__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 4;
    line-height: 1;
  }

  .ioh-mobile-fab .ioh-shine-sweep {
    top: 0;
    left: -95%;
    width: 52%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(
      105deg,
      transparent 30%,
      rgba(255, 255, 255, 0.12) 44%,
      rgba(255, 255, 255, 0.24) 50%,
      rgba(255, 255, 255, 0.12) 56%,
      transparent 70%
    );
  }

  .ioh-mobile-fab__icon svg {
    width: 27px;
    height: 27px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.22));
  }

  .ioh-mobile-fab__progress {
    position: absolute;
    inset: 3px;
    pointer-events: none;
    border-radius: 999px;
  }

  .ioh-mobile-fab__progress-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.25));
  }

  .ioh-mobile-fab__progress-track,
  .ioh-mobile-fab__progress-ring {
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
  }

  .ioh-mobile-fab__progress-track {
    stroke: rgba(255, 255, 255, 0.10);
  }

  .ioh-mobile-fab__progress-ring {
    stroke: rgba(255, 255, 255, 0.88);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.45))
           drop-shadow(0 0 12px rgba(255, 255, 255, 0.15));
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: iohMessengerFabRing 5s linear forwards;
  }

  /* Pulsing glow on the ring while animating */
  .ioh-mobile-fab--messenger::after {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 999px;
    animation: iohFabGlowPulse 2.5s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
  }

  @keyframes iohFabGlowPulse {
    0%, 100% { border-color: rgba(255, 255, 255, 0.06); transform: scale(1); }
    50%      { border-color: rgba(255, 255, 255, 0.18); transform: scale(1.03); }
  }

  @keyframes iohMessengerFabRing {
    from { stroke-dashoffset: 100; }
    to   { stroke-dashoffset: 0; }
  }

  .ioh-mobile-bottom-bar {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 -10px 28px rgba(26, 20, 18, 0.12);
  }

  /* ========================================
     SHARED PRISMATIC COMPONENTS (bottom bar)
     ======================================== */
  .ioh-prism-shine {
    position: absolute;
    top: -50%; left: -80%;
    width: 50%; height: 200%;
    background: linear-gradient(105deg,
      transparent 38%,
      rgba(255,255,255,0.14) 42%,
      rgba(255,255,255,0.28) 50%,
      rgba(255,255,255,0.14) 58%,
      transparent 62%
    );
    transform: skewX(-18deg);
    animation: prismShine 4.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
    flex: none;
  }
  .ioh-prism-shine--wa { animation-delay: 2s; }

  @keyframes prismShine {
    0%, 100% { left: -80%; opacity: 0; }
    10%      { opacity: 1; }
    55%      { left: 140%; opacity: 1; }
    65%, 100% { left: 140%; opacity: 0; }
  }

  .ioh-prism-edge {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    flex: none;
  }
  .ioh-prism-edge--top {
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,200,160,0.4) 20%, rgba(255,230,200,0.65) 50%, rgba(255,200,160,0.4) 80%, transparent 100%);
  }
  .ioh-prism-edge--bottom {
    bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(60,5,12,0.5) 30%, rgba(40,2,8,0.7) 50%, rgba(60,5,12,0.5) 70%, transparent 100%);
  }
  .ioh-prism-edge--wa-top {
    background: linear-gradient(90deg, transparent 0%, rgba(180,255,200,0.35) 20%, rgba(200,255,220,0.55) 50%, rgba(180,255,200,0.35) 80%, transparent 100%);
  }
  .ioh-prism-edge--wa-bottom {
    background: linear-gradient(90deg, transparent 0%, rgba(10,80,30,0.5) 30%, rgba(5,60,20,0.7) 50%, rgba(10,80,30,0.5) 70%, transparent 100%);
  }
  .ioh-prism-edge--tg-top {
    background: linear-gradient(90deg, transparent 0%, rgba(180,230,255,0.35) 20%, rgba(210,242,255,0.6) 50%, rgba(180,230,255,0.35) 80%, transparent 100%);
  }
  .ioh-prism-edge--tg-bottom {
    background: linear-gradient(90deg, transparent 0%, rgba(8,56,90,0.5) 30%, rgba(6,44,72,0.72) 50%, rgba(8,56,90,0.5) 70%, transparent 100%);
  }

  .ioh-prism-glow {
    position: absolute;
    inset: -4px -2px;
    z-index: -1;
    filter: blur(8px);
    pointer-events: none;
    animation: prismGlow 3s ease-in-out infinite alternate;
    flex: none;
  }
  .ioh-prism-glow--green {
    background: radial-gradient(ellipse at center, rgba(37,211,102,0.35) 0%, rgba(30,160,80,0.15) 50%, transparent 80%);
  }
  .ioh-prism-glow--blue {
    background: radial-gradient(ellipse at center, rgba(44,165,224,0.35) 0%, rgba(27,143,208,0.16) 50%, transparent 80%);
  }
  @keyframes prismGlow {
    0%   { opacity: 0.45; transform: scale(0.94); }
    100% { opacity: 1;    transform: scale(1.04); }
  }

  /* ---- Top CTA: "Hemen Ara" – Prismatic 3D ---- */
  .ioh-mobile-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: var(--ioh-text-light);
    font-family: var(--ioh-font-display);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 12px 16px;
    text-decoration: none;
    text-align: center;
    background:
      linear-gradient(160deg, rgba(255,255,255,0.10) 0%, transparent 40%),
      linear-gradient(180deg, #d8c8a2 0%, #c9b386 18%, #b39b6b 45%, #9c8154 75%, #7b633d 100%);
    box-shadow:
      inset 0  1px 0 rgba(255,246,224,0.38),
      inset 0  2px 4px rgba(230,209,164,0.16),
      inset 0 -1px 0 rgba(58,42,20,0.45),
      inset 0 -2px 5px rgba(46,33,15,0.18),
      0 -3px 12px rgba(179,155,107,0.25);
    border-top: 1px solid rgba(255,244,216,0.24);
    border-bottom: 1px solid rgba(58,42,20,0.40);
    text-shadow: 0 1px 3px rgba(0,0,0,0.35);
    transition: background 0.25s ease;
  }

  .ioh-mobile-bottom-cta > span:not([class]) {
    line-height: 1;
    position: relative;
    z-index: 2;
  }

  .ioh-mobile-bottom-cta:hover,
  .ioh-mobile-bottom-cta:active {
    background:
      linear-gradient(160deg, rgba(255,255,255,0.14) 0%, transparent 40%),
      linear-gradient(180deg, #e3d4b1 0%, #d2be94 18%, #c1ab7d 45%, #ab9161 75%, #8f7950 100%);
    color: var(--ioh-text-light);
    text-decoration: none;
  }

  .ioh-mobile-bottom-cta svg {
    flex-shrink: 0;
    color: var(--ioh-text-light);
    width: 22px; height: 22px;
    position: relative; z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
  }

  /* ---- Bottom navigation row ---- */
  .ioh-mobile-bottom-nav {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid rgba(47, 35, 27, 0.12);
    box-shadow: 0 -8px 24px rgba(26, 20, 18, 0.08);
  }

  .ioh-mobile-bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 9px 2px 11px;
    color: #000000;
    text-decoration: none;
    font-family: var(--ioh-font-body);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: color var(--ioh-transition);
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .ioh-mobile-bottom-nav-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(47, 35, 27, 0.12);
  }

  .ioh-mobile-bottom-nav-item:last-child::after {
    display: none;
  }

  .ioh-mobile-bottom-nav-item:hover,
  .ioh-mobile-bottom-nav-item:active {
    color: #b39b6b;
    text-decoration: none;
  }

  .ioh-mobile-bottom-nav-item svg {
    width: 25px;
    height: 25px;
    opacity: 1;
    stroke-width: 1.8;
  }

  .ioh-mobile-bottom-nav-item--location svg {
    width: 27px;
    height: 27px;
    stroke-width: 2;
  }

  .ioh-mobile-bottom-nav-item span {
    line-height: 1;
  }

  /* ---- WhatsApp – Prismatic 3D ---- */
  .ioh-mobile-bottom-nav-whatsapp {
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(160deg, rgba(255,255,255,0.10) 0%, transparent 40%),
      linear-gradient(180deg, #2ee874 0%, #28d366 18%, #25d366 40%, #1ebe5a 70%, #17a34a 100%) !important;
    color: #fff !important;
    box-shadow:
      inset 0  1px 0 rgba(180,255,210,0.40),
      inset 0  2px 3px rgba(150,255,190,0.15),
      inset 0 -1px 0 rgba(10,60,25,0.45),
      inset 0 -2px 5px rgba(5,40,15,0.18),
      0 -2px 10px rgba(37,211,102,0.20);
    border-top: 1px solid rgba(180,255,210,0.22) !important;
    border-left: 1px solid rgba(150,255,190,0.12) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.25);
  }

  .ioh-mobile-bottom-nav-whatsapp.is-telegram {
    background:
      linear-gradient(160deg, rgba(255,255,255,0.10) 0%, transparent 40%),
      linear-gradient(180deg, #53cfff 0%, #38b7f4 18%, #2ca5e0 40%, #1e86c1 70%, #146b9f 100%) !important;
    box-shadow:
      inset 0 1px 0 rgba(195,236,255,0.4),
      inset 0 2px 3px rgba(160,220,255,0.16),
      inset 0 -1px 0 rgba(8,46,76,0.48),
      inset 0 -2px 5px rgba(5,28,46,0.18),
      0 -2px 10px rgba(44,165,224,0.24);
    border-top: 1px solid rgba(195,236,255,0.24) !important;
    border-left: 1px solid rgba(150,220,255,0.12) !important;
  }

  .ioh-mobile-bottom-nav-whatsapp svg {
    color: #fff;
    opacity: 1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
  }

  .ioh-mobile-bottom-nav-messenger-icon,
  .ioh-mobile-bottom-nav-messenger-label {
    position: relative;
    z-index: 2;
  }

  .ioh-mobile-bottom-nav-messenger-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .ioh-mobile-bottom-nav-messenger-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 2;
    overflow: hidden;
    border-radius: 2px;
  }

  .ioh-mobile-bottom-nav-messenger-progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.85) 60%,
      rgba(255, 255, 255, 1) 100%
    );
    box-shadow:
      0 0 8px rgba(255, 255, 255, 0.4),
      2px 0 14px rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    animation: iohMessengerProgress 5s linear forwards;
  }

  @keyframes iohMessengerProgress {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }

  .ioh-mobile-bottom-nav-whatsapp:hover,
  .ioh-mobile-bottom-nav-whatsapp:active {
    background:
      linear-gradient(160deg, rgba(255,255,255,0.14) 0%, transparent 40%),
      linear-gradient(180deg, #38f080 0%, #2ee874 18%, #28d366 40%, #22c05c 70%, #1aab50 100%) !important;
    color: #fff !important;
  }

  .ioh-mobile-bottom-nav-whatsapp.is-telegram:hover,
  .ioh-mobile-bottom-nav-whatsapp.is-telegram:active {
    background:
      linear-gradient(160deg, rgba(255,255,255,0.14) 0%, transparent 40%),
      linear-gradient(180deg, #64d7ff 0%, #49c5fb 18%, #35afea 40%, #2493cf 70%, #1875ad 100%) !important;
    color: #fff !important;
  }

  .ioh-mobile-bottom-nav-whatsapp:hover svg,
  .ioh-mobile-bottom-nav-whatsapp:active svg {
    opacity: 1;
  }

  .ioh-mobile-bottom-nav-whatsapp::after {
    display: none;
  }

  /* ---- Body clearance ---- */
  body {
    padding-bottom: 100px;
  }

  .ioh-footer-bottom {
    padding-bottom: 24px;
  }
}
