
body  {
   overflow-x: hidden;
}


body > * {
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif!important;
}

.text-room-price{
    color:#a7d328!important;
}

.hero-carousel .carousel-item {
    aspect-ratio: 16 / 9;
    height: 75vh;
    object-fit: cover;
}

    .hero-carousel .carousel-item img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }


.carousel-caption {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    width: fit-content;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.35);
    padding: 0.75rem 1.25rem;
    border-radius: 0;
    text-align: center;
    color: #fff;
    backdrop-filter: blur(4px);
    font-size: 1rem;
}

    .carousel-caption h2 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .carousel-caption p {
        font-size: 0.95rem;
        margin-bottom: 0;
    }

/* Tablets */
@media (max-width: 768px) {
    .carousel-caption {
        padding: 0.5rem 1rem;
        bottom: 1rem;
        width: 250px;
        font-size: 0.95rem;
    }

        .carousel-caption h2 {
            font-size: 1.2rem;
        }

        .carousel-caption p {
            font-size: 0.85rem;
        }
}

/* Mobile phones */
@media (max-width: 480px) {
    .carousel-caption {
        padding: 0.4rem 0.8rem;
        width: 100%;
        bottom: 0;
        font-size: 0.9rem;
    }

        .carousel-caption h2 {
            font-size: 1rem;
        }

        .carousel-caption p {
            font-size: 0.8rem;
        }
}

.room-card {
    transition: transform 0.3s ease;
}

    .room-card:hover {
        transform: scale(1.03);
    }

    .room-card img {
        height: 350px;
        object-fit: cover;
    }

.overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
}


.custom-booking-btn {
    background-color: #0069d9; /* Bootstrap blue */
    border: 0;
    font-weight: 600;
    border-radius: 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 105, 217, 0.2);
}

    .custom-booking-btn:hover,
    .custom-booking-btn:focus {
        background-color: #0056b3;
        box-shadow: 0 6px 16px rgba(0, 105, 217, 0.3);
        outline: none;
    }

    .custom-booking-btn:active {
        background-color: #004a9f;
        box-shadow: 0 3px 10px rgba(0, 105, 217, 0.2) inset;
    }

input{
    border-radius:0!important;
}

textarea {
    border-radius: 0 !important;
}