body {
    /* font-family: "DM Sans", sans-serif; */
    /* font-family: "Playfair Display", serif; */
    background-color: #F7FDF7;
}

.navbar {
    position: absolute;
    width: 100%;
    z-index: 999;
}

.navbar .nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #fff !important;
    font-family: "DM Sans", sans-serif;
}

.navbar-light .navbar-toggler {
    border: 0;
}

.navbar-light .navbar-toggler-icon {
    background-image: url(images/menu.svg);
}

.book-btn {
    background: linear-gradient(360deg, #164511 0%, #37AB2A 100%);
    padding: 14px 24px;
    border-radius: 40px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: 0;
    color: #fff;
}

/* banner */
.banner_section .banner-video {
    height: 800px;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    height: 800px;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
}

.banner-content h1 {
    font-family: "Playfair Display";
    font-size: 80px;
    font-weight: 700;
    color: #fff;
}

/* upcoming events */
.events-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-family: "Playfair Display";
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #000;
}


.event-card .top-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
    height: 386px;
}

.border-solid {
    border: 4px solid;
}

.event-card h4 {
    font-family: "Playfair Display";
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.event-card p {
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    color: #424242;
    margin-bottom: 20px;
}

.event-card {
    transition: all 0.3s ease;
    transform: translateY(0);
    position: relative;
}

.event-card:hover {
    transform: translateY(-0.5rem);
}

/* gallery */

.gallery-section {
    padding: 0px 0px 80px;
    text-align: center;
}

.gallery-grid img {
    width: 100%;
    transition: transform 0.6s ease;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    text-align: center;
}

.footer .follow {
    margin-top: 30px;
    font-size: 18px;
    color: #000000;
    font-family: "Playfair Display";
}

.footer a {
    margin-bottom: 40px;
    display: block;
}

.copyright {
    border-top: 1px solid #0000004D;
    padding: 20px;
    margin: 0;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    color: #000;
}













@media (max-width: 767px) {
    .navbar-brand img {
        height: 60px;
    }

    .navbar-collapse {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        background: #fff;
        padding: 20px;
        height: 100vh;
        z-index: 999;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

    .menu-close {
        background: none;
        border: none;
        font-size: 30px;
        cursor: pointer;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .navbar-nav .nav-link {
        color: #000 !important;
        padding-bottom: 20px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .banner_section .banner-video {
        height: 400px;
    }

    .banner-content {
        height: 400px;
    }

    .events-section {
        padding: 40px 0px;
    }

    .section-title {
        font-size: 28px;
    }

    .events-section .col-md-4 {
        margin-top: 20px;
    }

    .event-card h4 {
        font-size: 20px;
    }

    .event-card .top-img {
        height: auto;
    }

    .event-card p {
        font-size: 14px;
    }

    .book-btn,
    .copyright {
        font-size: 14px;
    }

    .footer .follow {
        font-size: 16px;
    }

    .footer a {
        margin-bottom: 20px;
    }

    .footer .follow {
        margin-top: 20px;
    }

    .footer-logo {
        height: 120px;
    }

    .gallery-section {
        padding-bottom: 40px;
    }

    .gallery-title {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width:1024px) {
    .event-card h4 {
        font-size: 22px;
    }
}