/* General Styles */
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

/* Rooms Section */
.rooms {
    width: 100%;
    height: 300px;
    background-image: url("../Images/new_4.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rooming {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rooming #room {
    text-align: center;
    color: white;
    font-size: 80px;
    font-family: 'Playfair Display SC';
}

/* Container for Room Sections */
.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
}

/* Image Section */
.image-section {
    width: 40%;
    height: auto;
}

.image-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Content Section */
.content {
    width: 60%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.content h2 {
    font-family: 'Playfair Display';
    font-size: 60px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.content p {
    font-family: 'Lato';
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.book-btn {
    background-color: #e63946;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Lato';
}

.book-btn:hover {
    background-color: #c62839;
}

.amenities-container1 {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
}

/* Amenity Box */
.amenity-box1 {
    padding: 20px;
    width: 30%;
    height: 90px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.amenity-box1:hover {
    transform: scale(1.1);
}

/* Icons */
.amenity-box1 img {
    width: 50px;
    object-fit: contain;
    height: 63px;
}

/* Features Section */
.features {
    height: auto;
    margin: auto;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .image-section, .content {
        width: 100%;
    }

    .content h2 {
        font-size: 50px;
    }

    .amenity-box1 {
        width: 33%;
    }
    .image-section{
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    .rooming #room {
        font-size: 60px;
    }

    .content h2 {
        font-size: 40px;
    }

    .amenity-box1 {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .rooming #room {
        font-size: 40px;
    }

    .content h2 {
        font-size: 30px;
    }

    .amenity-box1 {
        width: 100%;
    }

    .book-btn {
        width: 100%;
        padding: 10px;
    }

    .features {
        width: 100%;
    }
    .amenities-container1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two equal columns */
        gap: 10px; /* Add spacing between items */
        margin-block: 20px;
    }
    .amenities-container1 p{
        font-size: 13px;
       
    }
    .features{
        margin-top: 0;
    }
    .image-section img {
     
        margin-top: 30px;
    }
    .container {
        padding: 10px;
    }
}


/* Toggle Button */
.toggle {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .toggle {
        display: block;
    }

 

    .navbar.active {
        display: flex;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar ul li {
        margin: 10px 0;
    }
}