/* Styling specific to the Detail Page */
.gold-text {
    color: #c5a059;
    font-size: 2rem;
    margin-bottom: 5px;
}

.room-intro {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.room-intro .intro-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.highlights ul {
    list-style: none;
    padding: 0;
}

.highlights li::before {
    content: "•";
    color: #c5a059;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
}

/* Facilities Grid - 3 or 4 columns */
.facilities {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.fac-item i {
    font-size: 2rem;
    color: #c5a059;
    display: block;
    margin-bottom: 10px;
}

.fac-item span {
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.hero-sub-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Section Titles with gold lines */
.section-title {
    color: #c5a059;
    text-align: left;
    border-bottom: 1px solid #f0e6d2;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .room-intro { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .facilities-grid { grid-template-columns: repeat(2, 1fr); }
}