body {
    font-family: 'Avenir', sans-serif;
    background-color: #FFF6EF;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

.hero-image-wrapper {
    width: 100%;
    max-height: 550px;
    overflow: hidden;
    border-bottom-left-radius: 5% 10%;
    border-bottom-right-radius: 5% 10%;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
}

.hero-overlay-text {
    bottom: 0px;
    /* pulls the half-circle closer to the bottom */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 200px;
    height: 100px;
}

.hero-overlay-circle {
    background-color: #fff6ef;
    width: 100%;
    height: 100%;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.hero-logo {
    margin-top: 20px;
    max-width: 150px;
    height: auto;
}


.btn-custom {
    background-color: #968070;
    color: #fff;
    border: none;
}

.btn-custom:hover {
    background-color: #cdd8dd;
    color: #000;
}


.btn-custom {
    background-color: #968070;
    color: #fff;
    border: none;
}

.btn-custom:hover {
    background-color: #cdd8dd;
    color: #000;
}

.section {
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.badge-custom {
    font-family: 'Playfair Display' !important;
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background-color: #D7C6B5;
    color: #000;
    font-weight: 500;
}

.badge-custom-2 {
    font-family: 'Playfair Display' !important;
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background-color: #cdd8dd;
    color: #000;
    font-weight: 500;
}

.badge-custom-3 {
    font-family: 'Playfair Display' !important;
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background-color: #968070;
    color: #000;
    font-weight: 500;
}

.badge-custom-4 {
    font-family: 'Playfair Display' !important;
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #000;
    border: 1px solid #968070;
    font-weight: 500;
    font-size: 0.975rem;
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.badge-container span {
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 0.975rem;
    white-space: nowrap;
}

.footer {
    background-color: #968070;
    color: #fff;
    padding: 2rem 0;
}

.footer a img {
    transition: opacity 0.3s ease;
}

.footer-logo {
    margin-top: 20px;
    max-width: 300px;
    height: auto;
}

@media (max-width: 768px) {
    .footer-logo {
        max-width: 250px;
    }

    .image-1 {
        height: 150px;
    }

    .image-2 {
        height: 240px;
    }

    .image-3 {
        height: 270px;
    }

    .features-heading {
        font-size: 1.5rem !important;
    }

    .badge-container span {
        font-size: 0.870rem;
    }

    .hero-overlay-text {
        width: 180px;
        height: 90px;
    }

    .hero-logo {
        max-width: 130px;
    }

    .feature-content {
        font-size: 16px !important;
    }

    .feature-ul {
        font-size: 16px !important;
    }

}

.feature-content {
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    text-align: left;
   
}

.feature-ul {
    font-size: 23px;
    font-family: 'Playfair Display' !important;
}

.footer a:hover img {
    opacity: 0.75;
}

.rounded-border {
    border-radius: 10px;
    border: 1.7px solid #968070;
    color: #968070
}

.bg-image-title {
    background-image: url('images/bg1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    /* Adjust height as needed */
    background-color: #968070;
    /* Fallback color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    /* Needed for overlay positioning */
}

.bg-image-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(150, 128, 112, 0.5);
    /* Adjust the overlay color and opacity */
    z-index: 1;
    /* Ensures overlay is below text */
}

.bg-image-title h2,
.bg-image-title h1 {
    position: relative;
    z-index: 2;
    /* Ensures text is above overlay */
    margin: 0;
    color: #FFF6EF;
    /* Text color */
}

.bg-image-content {
    background-image: url('images/bg2.png');
    background-size: auto;
    background-position: bottom;
    background-repeat: no-repeat;
}

.image-wrapper {
    overflow: hidden;
}

.features-heading {
    color: #aac5d1;
    font-size: 5rem;
}

.book-now-btn {
    cursor: pointer;
    background-color: #968070 !important;
    color: #fff6ef !important;
    font-family: 'Playfair Display', serif;
}

.contact-btn {
    font-family: 'Playfair Display', serif;
    padding: 0.5rem 1rem;
}

.whatsapp-btn {
    background-color: #968070 !important;
    color: #fff6ef !important;
}

.email-btn {
    background-color: #cdd8dd !important;
    color: #000 !important;
}

.text-left {
    text-align: left;
}

.text-brown {
    color: #bb9c88;
}

.text-blue {
    color: #86b2c6;
}

.border-brown {
    border: 1px solid #bb9c88;
    border-radius: 10px;
}

.border-blue {
    border: 1px solid #86b2c6;
    border-radius: 10px;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.feature-ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
}


.social-icons img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}