/* General Carousel Styles */
.carousel {
    max-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.carousel-item {
    height: 100%;
    width: 100%;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    right: -50%;
}

.carousel-indicators button {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: white;
    transition: background-color 0.3s;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    background-color: var(--smooth-white-color);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    opacity: 1;

    top: 40%;
}

.carousel-control-prev i,
.carousel-control-next i {
    color: var(--font-color);
    font-size: 20px;
}

/* Booking Form */
.booking-form-wrapper {
    width: 90%;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 5px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.booking-form-wrapper form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.booking-form-wrapper .form-select {
    flex: 1;
}

/* Mobile Styling */
@media (max-width: 992px) {
    .carousel {
        max-height: 200px;
        padding: 15px;
        border-radius: 5px;
    }

    .carousel-image {
        border-radius: 5px;
    }

    .carousel-indicators {
        display: none;
    }

    .booking-form-wrapper {
        display: none;
    }

    .carousel-control-prev,
    .carousel-control-next {
        height: 35px;
        width: 35px;
        margin: 0;
        border-radius: 50%;
    }

    .carousel-control-prev i,
    .carousel-control-next i {
        font-size: 15px;
    }
}
