/* Rooms Page Styles */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304') center/cover;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease-out;
}

.page-header p {
    font-size: 1.5rem;
    animation: slideInRight 1s ease-out 0.3s backwards;
}

.rooms-page {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.room-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

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

.room-details {
    padding: 2rem;
}

.room-details h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.room-details p {
    color: #666;
    margin-bottom: 1.5rem;
}

.room-features {
    list-style: none;
    margin-bottom: 2rem;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.room-features i {
    color: #3498db;
    font-size: 1.2rem;
}

.room-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.room-price span {
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: bold;
}

.book-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.book-button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        height: 30vh;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

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

    .room-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .room-details {
        padding: 1.5rem;
    }
}