/* 
 * Skyland Bogor Valley - Rooms & Detail Page CSS
 */

/* --- PAGE HERO --- */
.page-hero {
    background-color: var(--black);
    color: var(--white);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-light), transparent);
}
.page-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 16px;
}
.page-hero p {
    color: #A0A0A0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- ROOM LIST PAGE --- */
.rooms-filter {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-top: -40px;
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
}

/* --- ROOM DETAIL PAGE --- */
.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Gallery */
.room-gallery {
    margin-bottom: 40px;
}
.main-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
}
.thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.thumb-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.6;
}
.thumb-img:hover, .thumb-img.active {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--gold);
}

/* Info */
.room-info h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bg-gray);
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}
.meta-item i {
    color: var(--gold);
}
.room-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Facilities List */
.facilities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.facility-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.facility-item i {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

/* Booking Box Fixed Sidebar */
.booking-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}
.price-tag {
    font-size: 2rem;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}
.price-tag span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-body);
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .booking-box {
        position: static;
    }
}
@media (max-width: 768px) {
    .main-img { height: 300px; }
    .facilities-list { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2.2rem; }
}
