/* ================================================================
   oda-detay.css – The Selection Butik Otel
   Sadece oda-detay.php sayfasına özgü stiller
================================================================ */

/* Featured (büyük) görsel */
.oda-detay-featured {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}

/* Küçük thumbnail grid (3 kare yan yana) */
.oda-detay-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.oda-detay-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  filter: brightness(0.9);
}

.oda-detay-thumbs img:hover {
  filter: brightness(1.05);
  transform: scale(1.02);
}

/* Sağ sidebar bilgi kutusu */
.oda-info-box {
  background: #fff;
  border: 1px solid var(--gold-light);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}

.oda-info-box .oda-fiyat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.oda-info-box .oda-fiyat {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}

.oda-info-box .oda-fiyat small {
  font-size: 0.85rem;
  font-weight: 400;
  color: #888;
  font-family: 'Montserrat', sans-serif;
}

.oda-info-meta {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.2rem 0;
  border-top: 1px solid #f0ebe3;
  border-bottom: 1px solid #f0ebe3;
  margin: 1.2rem 0;
}

.oda-info-meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--text);
  font-weight: 500;
}

.oda-info-meta-item i {
  color: var(--gold);
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

/* Özellik grid items */
.ozellik-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.4rem 1rem;
  background: #fff;
  border: 1px solid #f0ebe3;
  border-radius: 2px;
  gap: 0.6rem;
  transition: var(--transition);
}

.ozellik-item:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.ozellik-item i {
  font-size: 1.5rem;
  color: var(--gold);
}

.ozellik-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* Mobil düzeltmeleri */
@media (max-width: 767px) {
  .oda-detay-featured {
    max-height: 260px;
  }

  .oda-info-box {
    position: static;
    margin-top: 2rem;
  }
}
