body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f1ea;
    color: #4b3832;
}

h2 {
    font-size: 3rem;
    color: #6e2c00;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: 'Georgia', serif;
    position: relative;
    margin: 50px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

p {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    color: #5C4033;
    text-align: justify;
    margin: 40px 0;
    letter-spacing: 1px;
}


.rooms {
    background-color: hsl(42, 36%, 74%);
    background-size: cover;
    padding: 60px 20px;
    text-align: center;
    color: #3a210c;
    border-radius: 10px;
}

.rooms-container {
    max-width: 1200px;
    margin: 0 auto;
}


.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
    color: #6e2c00;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #8b5e3c, #c49a6c);
}


.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}


.room-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 50px;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}


.room-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


.room-details {
    padding: 20px;
    text-align: center;
}

.room-details h3 {
    font-size: 20px;
    color: #7a420e;
    font-weight: bold;
    text-transform: uppercase;
}

.room-details p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #000000;
}

.btn-hotel {
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background-color: rgba(135, 76, 9, 0.5);
    border-color:rgba(135, 76, 9, 0.5);
    color: white;
    text-decoration: none;
}

.btn-hotel:hover {
    background-color: rgba(100, 64, 9, 0.7);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#services {
    background-color: #f1e8d6;
    padding: 50px 0;
    text-align: center;
    border-radius: 10px;
    margin: 50px;
}

.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.service {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #d8b79d;
}

.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 5px solid #d8b79d;
}

.service h3 {
    font-size: 24px;
    font-family: 'Arial', sans-serif;
    color: #5c4033;
    margin: 20px 0;
    font-weight: bold;
}

.service p {
    font-size: 16px;
    color: #7d5a4f;
    padding: 0 20px 20px;
    font-family: 'Arial', sans-serif;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.additional-services {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 80px 0;
}

.additional-services .service {
    width: 280px;
    margin: 0; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-embed {
    margin: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


@media (max-width: 1024px) {
    
    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .rooms {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .room-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
        margin: 30px;
    }

    p {
        font-size: 1.1rem;
    }

    .rooms {
        padding: 40px 15px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service {
        width: 90%; 
        margin-bottom: 20px;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .service img {
        height: 150px;
    }

    .instagram-embed {
        margin: 50px 15px;
    }

    .additional-services {
        justify-content: center; 
        gap: 20px;
    }

    .additional-services .service {
        width: 90%; 
        margin-bottom: 20px; 
    }
}

@media (max-width: 480px) {

    .rooms-container {
        padding: 20px;
    }

    .section-title {
        font-size: 1.8rem;
        margin: 20px;
    }

    .rooms {
        padding: 30px 10px;
    }

    .service {
        width: 100%;
        margin-bottom: 15px;
    }

    .service img {
        height: 120px;
    }

    .additional-services {
        justify-content: center; 
        gap: 15px; 
    }

    .additional-services .service {
        width: 100%;  
        margin-bottom: 15px;
    }
}
