body {
    font-family: 'Poppins', sans-serif;
}

.accessible-focus:focus {
    outline: 3px solid #00f;
    outline-offset: 2px;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: none;
}

.carousel img.active {
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.room-carousel img,
.amenity-carousel img {
    height: 200px;
    object-fit: cover;
}

.booking-form {
    display: none;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.booking-form.active {
    display: block;
}

nav {
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

html {
    scroll-behavior: smooth;
}

#nav-toggle {
    display: none;
}

#nav-toggle:checked ~ #nav-menu {
    display: block;
}

.hamburger-icon {
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    .hamburger-icon {
        display: block;
    }
    #nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #15803d;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    #nav-menu ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    #nav-menu li {
        margin: 0.5rem 0;
    }
    .language-switcher {
        margin-top: 1rem;
    }
}
/* styles.css */
#booking {
    transition: opacity 0.3s ease;
}

#booking.hidden {
    display: none;
}

#booking .bg-white {
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

#close-modal {
    cursor: pointer;
    font-size: 1.5rem;
}

#close-modal:hover {
    background-color: #4a5568;
}
/* styles.css */
.carousel-inner img {
    opacity: 0;
}

.carousel-inner img.active {
    opacity: 1;
}

#booking {
    transition: opacity 0.3s ease;
}

#booking.hidden {
    display: none;
}

#booking .bg-white {
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

#close-modal {
    cursor: pointer;
    font-size: 1.5rem;
}

#close-modal:hover {
    background-color: #4a5568;
}