.elementor-282 .elementor-element.elementor-element-568115c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-282 .elementor-element.elementor-element-568115c.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-282 .elementor-element.elementor-element-568115c{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-7579735 *//* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

header {
    background: #3e2723;
    color: white;
    padding: 40px;
    font-size: 24px;
}

#amenities {
    background: linear-gradient(to right, #519fa5, #371608);
    color: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#amenities h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.amenities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #371608;
}

.amenity-item span {
    font-size: 2rem;
    margin-bottom: 10px;
}

.amenity-item p {
    font-size: 1.2rem;
    text-align: center;
    margin: 0;
}

.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

button.book-now {
    padding: 12px 25px;
    background: linear-gradient(45deg, #800020, #a0002e);
    color: white;
    border: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

button.book-now:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #a0002e, #800020);
}

.slider img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 30px 0 10px;
    color: #333;
}

.room-container, .gallery-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.room-box {
    width: 320px;
    background: white;
    margin: 15px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.room-box:hover {
    transform: scale(1.05);
}

.room-box img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

p {
    font-size: 18px;
    line-height: 1.6;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    font-size: 20px;
    margin: 12px 0;
    font-weight: bold;
    color: #555;
}

.gallery-container img {
    width: 30%;
    height: 250px;
    margin: 10px;
    border-radius: 10px;
    object-fit: cover;
}

footer {
    background: black;
    color: white;
    padding: 20px;
    font-size: 18px;
}/* End custom CSS */