.page-header {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/rooms-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-bg);
    margin-top: 80px;
}

.header-content h1 {
    font-size: 3rem;
    color: var(--light-bg);
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Rooms Section */
.rooms-section {
    padding: 5rem 0;
}

.room-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.room-category:last-child {
    margin-bottom: 0;
}

.room-info h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.amenities span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.amenities i {
    color: var(--primary-color);
}

.room-features {
    margin: 2rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.room-features h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.room-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.room-features li {
    position: relative;
    padding-left: 1.5rem;
}

.room-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.room-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.room-gallery img:hover {
    transform: scale(1.02);
}

/* Booking Form */
.booking-section {
    background: #f9f9f9;
    padding: 5rem 0;
}

.booking-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-form .cta-button {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .room-category {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .room-gallery img {
        height: 300px;
    }

    .booking-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 40vh;
    }

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

    .amenities {
        gap: 1rem;
    }

    .amenities span {
        font-size: 1rem;
    }

    .room-features ul {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Form Validation Styles */
.error {
    border-color: #ff4444 !important;
}

.error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}