@charset "UTF-8";
/* =============================================================
   ODA-DETAY.CSS — Yıldız Otel | Oda Detay Sayfası
   ============================================================= */

/* ─────────────────────────────────────────────
   Oda Detay Ana Alan
───────────────────────────────────────────── */
.od-main-section {
    padding: 80px 0;
    background: var(--gray-light);
}

/* Ana Görsel */
.od-main-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
}

.od-main-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Galeri Thumbnail'ları */
.od-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 32px;
}

.od-gallery-thumb {
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.od-gallery-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.od-gallery-thumb:hover img {
    transform: scale(1.08);
}

.od-gallery-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,43,74,0.25);
    opacity: 0;
    transition: var(--transition);
}

.od-gallery-thumb:hover::after {
    opacity: 1;
}

/* ─────────────────────────────────────────────
   Oda Açıklaması
───────────────────────────────────────────── */
.od-description h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 14px;
}

.od-description p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 12px;
}

/* Oda Özellikleri */
.od-ozellikler {
    margin-top: 28px;
}

.od-ozellikler h5 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.od-ozellik-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.od-ozellik-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-dark);
    padding: 8px 12px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.od-ozellik-list li i {
    color: var(--gold);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}

/* ─────────────────────────────────────────────
   Rezervasyon Bilgi Kutusu (Sağ Kolon)
───────────────────────────────────────────── */
.od-rezervasyon-box {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gold);
    margin-bottom: 20px;
    position: sticky;
    top: 100px;
}

.od-rez-title {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.od-rez-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.od-rez-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 12px 14px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.od-rez-contact a:hover {
    background: var(--navy);
    color: var(--white);
}

.od-rez-contact a i {
    color: var(--gold);
    font-size: 1rem;
    width: 18px;
}

/* ─────────────────────────────────────────────
   Konaklama Notları
───────────────────────────────────────────── */
.od-notlar {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--navy);
}

.od-notlar h6 {
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.od-not-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
}

.od-not-item:last-child {
    border-bottom: none;
}

.od-not-item i {
    color: var(--gold);
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}

/* ─────────────────────────────────────────────
   Diğer Odalar
───────────────────────────────────────────── */
.od-diger-section {
    padding: 80px 0;
    background: var(--white);
}

.od-diger-card {
    background: var(--gray-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.od-diger-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.od-diger-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.od-diger-body {
    padding: 20px;
}

.od-diger-body h5 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.od-diger-body p {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* ─────────────────────────────────────────────
   Oda Galerisi (Tüm Görseller)
───────────────────────────────────────────── */
.od-galeri-section {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 2px solid var(--border-color);
}

.od-galeri-section h5 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.od-galeri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.od-galeri-item {
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.od-galeri-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.od-galeri-item:hover img {
    transform: scale(1.06);
}

.od-galeri-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    background: rgba(26, 43, 74, 0.38);
    opacity: 0;
    transition: var(--transition);
}

.od-galeri-item:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 991.98px) {
    .od-rezervasyon-box { position: static; }
}
@media (max-width: 767.98px) {
    .od-main-section { padding: 55px 0; }
    .od-main-img img { height: 260px; }
    .od-ozellik-list { grid-template-columns: 1fr; }
    .od-diger-section { padding: 55px 0; }
    .od-galeri-grid { grid-template-columns: repeat(2, 1fr); }
    .od-galeri-item img { height: 110px; }
}
