/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #163f1b;
}

a {
    text-decoration: none;
    color: #163f1b;
}

a:hover {
    color: #163f1b;
}

/* #bba047 - yellow
#016908 - green */


/* Header Styling */
header {
    background: #163f1b;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo img {
    height: 50px;
}


.navbar {
    display: flex;
    align-items: center;
}

.navbar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-item {
    position: relative;
    margin: 0 15px;
}

.navbar-item a {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
}

.navbar-item a:hover {
    background: #bba047;
    border-radius: 5px;
}

/* Dropdown Sub-Menu */
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #163f1b;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: auto; /* Set a fixed width for the dropdown */
    min-width: auto; /* Ensure the dropdown has enough space */
    white-space: normal; /* Allow the text to wrap */
}

.navbar-item:hover .sub-menu {
    display: block;
}

.sub-menu a {
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
}

.sub-menu a:hover {
    background: #163f1b;
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #163f1b;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px 0;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-item {
        width: 100%;
        text-align: center;
    }

    .navbar-item a {
        padding: 10px 20px;
    }

    .navbar-item:hover .sub-menu {
        display: none;
    }

    /* Mobile Dropdown Fix: Make sure dropdowns work on small screens */
    .sub-menu {
        width: auto; /* Let the dropdown adjust its width */
        min-width: 100%; /* Ensure it stretches across the screen */
        position: relative; /* Position relative for better control */
    }

    .sub-menu a {
        white-space: normal; /* Allow menu text to wrap properly */
        padding: 10px 20px;
    }
}


/* Main Content */
main {
    padding: 40px 20px;
    background-color: #f4f4f4;
}

.services-overview {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services-overview h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #163f1b;
}

.services-overview h2 {
    font-size: 2em;
    margin-top: 40px;
    color: #163f1b;
}

.schedule .service {
    margin-bottom: 20px;
}

.service h3 {
    font-size: 1.8em;
    color: #163f1b;
}

.service p {
    font-size: 1.1em;
}

.service-types {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-type {
    flex: 0 0 30%;
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.service-type h3 {
    color: #163f1b;
    font-size: 1.6em;
}

ul {
    list-style-type: disc;
    margin-top: 20px;
    padding-left: 20px;
}

ul li {
    font-size: 1.1em;
}
ul li::marker {
    color: #bba047;
}
ul li:hover {
    color: #bba047;
}
ul li:hover::marker {
    color: #163f1b;
}
ul li:hover {
    text-decoration: underline;
}
ul li:hover::marker {
    text-decoration: underline;
}
  
/* Footer */

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}
footer p {
    margin: 0;
}
footer a {
    color: #bba047;
}
footer a:hover {
    text-decoration: underline;
}
