body {
    margin: 0;
    padding: 0;
    background-image: url('../assets/backgroundimagee.jpg'); /* Replace with your background image */
    background-size: cover; /* Ensure the background image covers the entire viewport */
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh; /* Ensure the body takes at least the full viewport height */
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

@font-face {
    font-family: 'RiverAdventures';
    src: url('../River Adventurer.ttf');
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #004d00;
    font-family: 'RiverAdventures', sans-serif;
}

header img {
    height: 80px; /* Adjust the height as desired */
    width: auto;  /* Maintain aspect ratio */
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu .line {
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin: 5px 0;
    border-radius: 2px;
}

nav {
    display: flex;
    gap: 20px;
    justify-content: center; /* Center the items inside the nav */
    flex-grow: 1; /* Allow the nav to take remaining space */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: white; /* Ensure text color is white */
    background-color: #66b266; /* Match button color */
    padding: 10px 20px;
    border-radius: 5px; /* Keep slight rounding for button-like appearance */
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: block;
    text-align: center;
}

nav ul li a:hover {
    background-color: #007700; /* Update hover color to match other buttons */
    transform: scale(1.05); /* Keep subtle zoom effect on hover */
}

nav.active {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #004d00;
    color: white;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    nav {
        display: none;
        flex-direction: column;
    }

    nav.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

.container {
    display: flex;
    flex-wrap: wrap; /* Allows content to wrap on smaller screens */
    padding: 20px;
    color: white;
    flex: 1; /* Allow the container to take remaining space */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    font-family: Arial, Helvetica, sans-serif;
}

.left-sections, .right-section {
    flex: 1;
    min-width: 300px; /* Ensure a minimum width for each section */
    margin: 10px;
}

.content-block {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block h2 {
    font-size: 24px;
    color: #fffdfd;
    margin-bottom: 15px;
}

.content-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #f3f0f0;
}

footer {
    background-color: #004d00;
    color: white;
    text-align: center;
    padding: 2px 0;
    width: 100%;
    position: relative;
    bottom: 0;
    margin-top: auto; /* Push the footer to the bottom */
    font-family: Arial, Helvetica, sans-serif;

}


