/* CSS for Iconic Private Rooms Page */

/* Page Title Area */
.page-title-area {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.page-title-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
}

.page-title-content {
    position: relative;
    z-index: 1;
}

.page-title-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title-content p {
    font-size: 1.2rem;
}

/* Main content section styles */
.iconic-private-rooms-content {
    padding: 80px 0;
}

.room-showcase-card {
    margin-bottom: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.room-showcase-card img {
    width: 100%;
    height: auto;
    max-height: 300px; /* Limit image height */
    object-fit: cover;
}

.room-details {
    padding: 25px;
}

.room-details h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.room-details p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.room-details .capacity, .room-details .features-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.room-features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.room-features-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    color: #555;
}

.room-features-list li::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #28a745; /* Green check */
    position: absolute;
    left: 0;
    top: 2px;
}

.btn-inquire {
    background-color: #007bff; /* Primary color or your theme's accent */
    border-color: #007bff;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-inquire:hover {
    background-color: #0056b3; /* Darker shade on hover */
    border-color: #0056b3;
    color: white;
}

/* General CTA section */
.cta-section {
    background-color: #f8f9fa; /* Light grey background */
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-title-content h1 {
        font-size: 2.5rem;
    }
    .room-details h3 {
        font-size: 1.5rem;
    }
    .cta-section h2 {
        font-size: 1.8rem;
    }
}
