body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #fafafa;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
}

.hero {
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/bg_thewhitesuites.jpg'); */
    background-size: cover;
    background-position: center;
    height: 90vh;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

.room-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.booking-form input,
.booking-form select {
    border-bottom: 1px solid #d1d5db;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: #9ca3af;
    outline: none;
}

.amenity-icon {
    transition: transform 0.3s ease;
}

.amenity:hover .amenity-icon {
    transform: scale(1.1);
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #d1d5db, transparent);
}

.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

#bookingModal {
    backdrop-filter: blur(5px);
}




#availabilityModal {
    transition: opacity 0.3s ease;
}

#availableSuitesContainer::-webkit-scrollbar {
    width: 6px;
}

#availableSuitesContainer::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#availableSuitesContainer::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

#availableSuitesContainer::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}