:root {
    --primary-color: #007f5f;
    --accent-color: #00b08b;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    --bs-dropdown-link-active-bg: #007f5f;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #222;
}

header {
    background: #111;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.logo img {
    width: 100px;
}

nav {
    display: flex;
    gap: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.hero {
    text-align: center;
    padding: 2rem 1rem;
}
.nav-link:focus, .nav-link:hover {
    text-shadow: 0 0 .65px var(--primary-color), 0 0 .65px var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease-in;
}

.container {
    margin-bottom: 10rem;
    min-height: 30rem;
}

.hero h1 {
    font-size: 4rem;
}

.hero p {
    color: #555;
    margin-top: 0.5rem;
}

.mega-menu {
    width: 100%;
    background-color: #0e0e0e;
    z-index: 999;
    transition: top 0.3s, transform 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.mega-menu.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    opacity: 1;
}

.mega-menu:not(.sticky) {
    transform: translateY(-10px);
    opacity: 0.95;
}

.mega-menu nav a {
    display: inline-block;
    padding: 1rem;
    text-decoration: none;
    color: #fff;
    font-weight: normal;
}

.mobile-nav a:focus, .mobile-nav a:hover, .mega-menu nav a:focus, .mega-menu nav a:hover {
    text-shadow: 0 0 .65px var(--primary-color), 0 0 .65px var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease-in;
}

.mega-menu nav a.btn {
    background-color: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border: none;
    font-weight: bold;
    margin-top: 0;
    line-height: 2rem;
    border-radius: 0;
}

.mega-menu nav a.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

.dropdown-item {
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x) !important;
}

.mega-menu .dropdown a.dropdown-item {
    color: #0e0e0e;
}
.mega-menu .dropdown .dropdown-item.active, .mega-menu .dropdown .dropdown-item:active {
    background-color: #007f5f !important;
    color: #fff;
}
.form-check {
    display: inline-block;
    min-height: 1.5rem;
    padding-left: 3.5em;
    margin-bottom: .125rem;
}

.form-check-input:checked {
    background-color: #00b08b;
    border-color: #00b08b;
}

.section-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.section {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.offerings {
    text-align: center;
}

.offerings h1 {
    font-size: 4rem;
}

.features h3 {
    font-weight: 700;
}

.btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
    border-radius: 0;
    width: 200px;
}

.split-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.split-images img {
    width: 100%;
    height: auto;
}

.highlight-section {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.highlight-section button {
    margin-top: 1rem;
    background-color: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border: none;
    font-weight: bold;
}

.testimonials {
    text-align: center;
    padding: 2rem 1rem;
}

.testimonial {
    margin-top: 1.5rem;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.nav-pills {
    --bs-nav-pills-border-radius: var(--bs-border-radius);
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-active-bg: var(--primary-color);
}

.nav-pills .nav-link {
    border-radius: 0;
}

.footer {
    background-color: #0e0e0e;
    color: white;
    padding: 2rem 1rem;
    bottom: 0;
    width: 100%;
    z-index: 999;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer .img-link{
    width: 2rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    background: #fff;
    height: 2px;
    margin: 4px 0;
    width: 20px;
}

.gallery-section {
    padding: 3rem 1rem;
    background: #f5f5f5;
}

.gallery-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.swiper {
    padding: 1rem 0;
    position: relative;
}

.swiper-slide {
    width: auto;
    max-width: 300px;
}

.swiper-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.75rem;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.swiper-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.swiper-button-next,
.swiper-button-prev {
    color: #333;
}

@media (max-width: 767px) {
    .swiper-slide img {
        height: 150px;
    }
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #0e0e0e;
    padding: 1rem;
    position: absolute;
    top: 5rem;
    right: 0;
    width: 100%;
}

.mobile-nav .dropdown a{
    float:left;
}

.dropdown-toggle::after {
    color: #fff;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0;
}

.material-icons{
    vertical-align: middle;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav.active {
        display: flex;
    }
    .container {
        margin-bottom: 16rem;
    }
}

@media (min-width: 768px) {
    .features {
        flex-direction: row;
        justify-content: space-between;
    }

    .split-images {
        flex-direction: row;
    }

    .testimonial-container {
        display: flex;
        justify-content: space-around;
    }
}
