.navbar-brand {
    font-family: "Borel", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;

    /*width: 110% !important;*/
}

.nav-link.dropdown-toggle {
    font-weight: bold;
}

.btn.btn-warning {
    background-color: #c49c74; !important;
    box-shadow: var(--bs-box-shadow) !important;
    border: unset !important;
}

.display-2, .lead{
    color: #FFFFFF;
    background-image: linear-gradient(45deg, #FFFFFF , #CCCCCC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.card-img {
    height: 300px !important; /* Adjust as needed */
    overflow: hidden; /* Hides content exceeding the height */
}

.carousel-item img {
    width: 100%; /* Ensures image fills the width of its container */
    height: 100%; /* Ensures image fills the height of its container */
    object-fit: cover; /* Crops the image to cover the entire area, maintaining aspect ratio */
    object-position: center; /* Centers the image within the container */
}

.carousel-control-prev {
    left: 3rem !important;
}

.carousel-control-next {
    right: 3rem !important;
}

#roomTypeCarousel {
    margin-right: -3rem;
}

@media (max-width: 768px) {
    .container {
        margin-top: 2rem;
    }

    #carousel {
        margin-bottom: 4rem;
    }

    .carousel-control-prev {
        left: 0 !important;
    }

    .carousel-control-next {
        right: 0 !important;
    }

    #roomTypeCarousel {
        margin-right: 0;
    }
}