/* RESET */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

/* HEADER */
header {
    background: #1a252f;
    color: white;
    text-align: center;
    padding: 20px;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    letter-spacing: 1px;
    color: #f1c40f;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* NAVIGATION */
nav {
    background: #2c3e50;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
}

nav a {
    color: white;
    margin: 5px 10px;
    text-decoration: none;
    font-size: 14px;
}

/* HERO SLIDER */
.hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.slide.active {
    display: block;
}

/* HERO OVERLAY */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background: rgba(0,0,0,0.3);
    text-align: center;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    padding: 20px;
}

/* GALLERY IMAGES */
.grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.grid img:hover {
    transform: scale(1.05);
}

/* CARDS */
.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

/* BUTTONS */
.btn {
    background: #e74c3c;
    color: white;
    padding: 12px 18px;
    text-decoration: none;
    border-radius: 20px;
    display: inline-block;
}

/* FLOATING BUTTONS */
.floating-book {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 14px 18px;
    border-radius: 30px;
    text-decoration: none;
    z-index: 999;
}

.whatsapp {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 20px;
    padding: 14px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
}

/* TEXT SECTIONS */
.subtext {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.urgency {
    color: #e74c3c;
    font-weight: bold;
    margin-top: 10px;
}

/* TRUST BADGES */
.trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    font-weight: bold;
}

.trust span {
    background: #ecf0f1;
    padding: 6px 10px;
    border-radius: 20px;
}

/* ROOM SLIDER */
.room-slider {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.room-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.room-slide.active {
    display: block;
}

.room-slide:hover {
    transform: scale(1.03);
}

.room-slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 16px;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 50%;
}

.room-slider button:nth-child(3) {
    left: 10px;
}

.room-slider button:nth-child(4) {
    right: 10px;
}

/* MODAL (IMAGE POPUP) */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 85%;
    margin-top: 60px;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* FORMS */
form input,
form textarea {
    width: 90%;
    max-width: 500px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* FEATURES LIST */
.features {
    max-width: 600px;
    margin: 20px auto;
    line-height: 1.6;
}

.features li {
    margin-bottom: 8px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #1a252f;
    color: white;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {

    header h1 {
        font-size: 22px;
    }

    .hero {
        height: 250px;
    }

    .overlay h2 {
        font-size: 18px;
    }

    .grid {
        padding: 10px;
        gap: 10px;
    }

    .card {
        padding: 15px;
    }

    .floating-book {
        padding: 12px;
        font-size: 14px;
    }

    .whatsapp {
        bottom: 70px;
    }
}