/* CSS for Meetings Page */

/* Page Title Area - you can reuse or adapt from iconic-private-rooms.css if the style is similar */
.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 for meetings */
.meetings-content-section {
    padding: 80px 0;
}

.meeting-room-card {
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meeting-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.meeting-room-card img {
    width: 100%;
    height: 280px; 
    object-fit: cover;
}

.meeting-room-details {
    padding: 25px;
}

.meeting-room-details h3 {
    font-size: 1.7rem;
    color: #2c3e50; /* A professional blue */
    margin-bottom: 15px;
}

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

.meeting-room-details .capacity, 
.meeting-room-details .tech-features-title,
.meeting-room-details .ideal-for-title {
    font-weight: 600;
    color: #34495e; /* Darker blue/grey */
    margin-top: 15px;
    margin-bottom: 5px;
}

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

.meeting-features-list li {
    padding-left: 0; /* Adjusted for icon removal */
    position: relative;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.meeting-features-list li::before {
    content: ''; /* Icon removed */
}

.btn-book-meeting {
    background-color: #3498db; /* A professional blue */
    border-color: #3498db;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-book-meeting:hover {
    background-color: #2980b9; /* Darker blue on hover */
    border-color: #2980b9;
    color: white;
}

/* General CTA section for meetings - can be similar to iconic-private-rooms */
.meetings-cta-section {
    background-color: #f4f6f7; /* Light, neutral background */
    padding: 60px 0;
    text-align: center;
}

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

.meetings-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.3rem;
    }
    .meeting-room-details h3 {
        font-size: 1.4rem;
    }
    .meetings-cta-section h2 {
        font-size: 1.8rem;
    }
}