@charset "UTF-8";
/* =============================================================
   ODALAR.CSS — Yıldız Otel | Odalar Listeleme Sayfası
   ============================================================= */

/* ─────────────────────────────────────────────
   Oda Kart
───────────────────────────────────────────── */
.rooms-section {
    padding: 90px 0;
    background: var(--gray-light);
}

.room-list-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-list-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.room-list-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.room-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-list-card:hover .room-list-img img {
    transform: scale(1.07);
}

.room-list-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
}

.room-list-body {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-list-body h4 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.room-list-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.room-list-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.room-feat-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--gray-light);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.room-feat-tag i {
    color: var(--gold);
    font-size: 0.7rem;
}

.room-list-footer {
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
}

.room-list-footer a {
    flex: 1;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.room-list-footer .btn-detail {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.room-list-footer .btn-detail:hover {
    background: var(--navy);
    color: var(--white);
}

.room-list-footer .btn-rez {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.room-list-footer .btn-rez:hover {
    background: #b8922f;
    border-color: #b8922f;
    color: var(--white);
}

/* ─────────────────────────────────────────────
   Konaklama Avantajları
───────────────────────────────────────────── */
.avantaj-section {
    padding: 80px 0;
    background: var(--white);
}

.avantaj-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.avantaj-item:hover {
    background: var(--gray-light);
}

.avantaj-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(201,168,76,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.avantaj-text h6 {
    font-size: 0.98rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.avantaj-text p {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 767.98px) {
    .rooms-section { padding: 60px 0; }
    .avantaj-section { padding: 55px 0; }
    .room-list-img { height: 200px; }
}
