body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
}

header {
    background: #5b2c06;
    color: white;
    text-align: center;
    padding: 25px;
}

header h1 {
    margin: 0;
    font-size: 40px;
}

header p {
    color: white;
    margin-top: 10px;
    font-size: 18px;
}

.hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
} 
.hero-slideshow {
    position: absolute;
    inset: 0;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slideshow .active {
    opacity: 1;
}

.hero-slideshow .active {
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h2 {
    font-size: 55px;
    color: white;
}

.hero p {
    color: white;
    font-size: 22px;
    line-height: 1.6;
}

.hero a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: #5b2c06;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.hero a:hover {
    background: #7a3d09;
}
.about {
    background: #f8f8f8;
    padding: 70px 20px;
    text-align: center;
}

.about h2 {
    font-size: 34px;
    color: #5b2c06;
}

.about p {
    max-width: 800px;
    margin: 20px auto;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
} 
.rooms {
    padding: 70px 20px;
    background: white;
    text-align: center;
}

.rooms h2 {
    font-size: 34px;
    color: #5b2c06;
    margin-bottom: 40px;
}

.room-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.room {
    background: #f4f4f4;
    padding: 25px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.room h3 {
    color: #5b2c06;
}

.room p {
    font-size: 18px;
    font-weight: bold;
}
.services {
    background: #f8f8f8;
    padding: 70px 20px;
    text-align: center;
}

.services h2 {
    font-size: 34px;
    color: #5b2c06;
    margin-bottom: 40px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service {
    background: white;
    padding: 20px;
    width: 220px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.gallery {
    background: white;
    padding: 70px 20px;
    text-align: center;
}

.gallery h2 {
    font-size: 34px;
    color: #5b2c06;
    margin-bottom: 40px;
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-container img {
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.contact {
    background: #5b2c06;
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.contact h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.contact p {
    color: white;
    font-size: 18px;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 25px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
} 
html {
    scroll-behavior: smooth;
}

nav {
    margin-top: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
} 
footer {
    background: #3d1d03;
    color: white;
    text-align: center;
    padding: 20px;
} 
.room img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.book-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #5b2c06;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.book-btn:hover {
    background: #7a3d09;
} 
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #5b2c06;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.logo h1 {
    color: white;
    margin: 0;
    font-size: 32px;
}

.logo span {
    color: white;
    font-size: 16px;
}

.header nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

.header nav a:hover {
    color: #ffd700;
} 
@media (max-width: 768px) {

    .header {
        flex-direction: column;
        padding: 20px;
    }

    .header nav {
        margin-top: 15px;
    }

    .header nav a {
        display: inline-block;
        margin: 8px;
        font-size: 14px;
    }

    .hero h2 {
        font-size: 35px;
    }

    .hero p {
        font-size: 18px;
    }

    .room-container,
    .service-container,
    .gallery-container {
        flex-direction: column;
        align-items: center;
    }

    .room {
        width: 85%;
    }

    .gallery-container img {
        width: 90%;
    }
} 
.map {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
} 
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about,
.rooms,
.services,
.gallery,
.contact {
    animation: fadeUp 1s ease-in-out;
} 
footer h3 {
    margin-bottom: 10px;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
} 
.room {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room p {
    line-height: 1.6;
} 
.room {
    display: block;
    background: white;
    padding: 25px;
    margin: 20px;
} 
.booking-form {
    background: white;
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.booking-form h2 {
    color: #5b2c06;
    margin-bottom: 25px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.booking-form textarea {
    height: 120px;
}

.booking-form button {
    width: 100%;
    padding: 15px;
    background: #5b2c06;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.booking-form button:hover {
    background: #7a3d09;
} 
.gallery {
    padding: 70px 20px;
    background: white;
    text-align: center;
}

.gallery h2 {
    color: #5b2c06;
    font-size: 35px;
    margin-bottom: 40px;
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.gallery-container img {
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
} 
footer {
    background: #4a2c14;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}

.footer-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-content p {
    margin: 8px 0;
    font-size: 16px;
}

.copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #ddd;
} 
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
} 
.reviews {
    padding: 70px 20px;
    background: #f8f8f8;
    text-align: center;
}

.reviews h2 {
    color: #5b2c06;
    margin-bottom: 40px;
}

.review-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.review-card {
    background: white;
    width: 300px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-card p {
    margin: 20px 0;
    line-height: 1.6;
} 
.why-us {
    padding: 70px 20px;
    text-align: center;
    background: white;
}

.why-us h2 {
    color: #5b2c06;
    margin-bottom: 40px;
}

.why-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.why-card {
    width: 250px;
    background: #f8f8f8;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-card h3 {
    margin-bottom: 15px;
    color: #5b2c06;
} 
@media (max-width: 768px) {

    .hero {
        min-height: 70vh;
        padding: 20px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .room-container,
    .gallery-container,
    .review-container,
    .why-container {
        flex-direction: column;
        align-items: center;
    }

    .room-card,
    .gallery-container img,
    .review-card,
    .why-card {
        width: 90%;
    }

    nav ul {
        flex-direction: column;
    }

} 
.call-float {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 60px;
    height: 60px;
    background: #5b2c06;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 1000;
}