/* Konaklama / Otel Detay sayfaları için ornek-css/custom.css kaynağından alınmış stiller */

:root {
  --ink: #1a1a1a;
  --accent: #e23b23;
  --accent-dark: #c42f1c;
  --muted: #696969;
  --soft: #f5f6f7;
}

.card-ghost {
  background: #ffffff;
  border: 1px solid #e6edef;
  border-radius: 18px;
  margin-bottom: 50px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
}

.xl-title {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 1.75rem;
  margin: 0;
}

.lg-title {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 1.40rem;
  margin: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: .48rem .7rem;
  border-radius: 12px;
  background: #000;
  color: #FF5831;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
  white-space: nowrap;
  height: fit-content;
  margin-right: .5rem;
}

/* Çocuk Koşusu – 4 kartlı bilgi alanı */
.race-info-grid-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .race-info-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .race-info-grid-3 {
    grid-template-columns: 1fr;
  }
}

.info-box {
  background: #fff6f4;
  border: 1px solid #f6d9d3;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  min-height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info-box * {
  color: #333333;
}
.info-box a:hover,
.info-box a:hover * {
  color: #e23b23 !important;
}
.info-box strong {
  font-weight: 800;
}
.info-icon {
  font-size: 18px;
  line-height: 1;
  color: #e23b23 !important;
  margin-bottom: 4px;
}

.hotel-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
}
.hotel-card .hotel-image {
  flex: 0 0 320px;
}
.hotel-content {
  flex: 1;
}
@media (max-width: 768px) {
  .hotel-row {
    flex-direction: column;
    gap: 15px;
  }
  .hotel-card .hotel-image {
    flex: unset;
    width: 100%;
  }
  .hotel-card .hotel-image img {
    width: 100%;
    height: auto;
  }
}

.hotel-stars {
  display: inline-flex;
  gap: 2px;
}

/* ---- Bootstrap benzeri yardımcı sınıflar (ornek-css içinde tanımlı değildi, minimal eşdeğerleri eklendi) ---- */
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.gap-2 { gap: .5rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.p-4 { padding: 1.5rem; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.text-muted { color: var(--muted); }
@media (min-width: 768px) {
  .p-md-5 { padding: 3rem; }
}

/* ---- Full-width Leona banner (siyah şerit) ---- */
.hd-leona-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: #000;
  border-radius: 14px;
  padding: 28px 32px;
  flex-wrap: wrap;
}
.hd-leona-banner-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.hd-leona-banner-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.2);
}
.hd-leona-banner-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.hd-leona-banner-sublabel {
  font-size: 10px;
  letter-spacing: .16em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  font-weight: 700;
}
.hd-leona-banner-phone {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: .02em;
}
.hd-leona-banner-phone:hover { color: #FF5831; }
