body {
    margin: 0;
    padding: 0;
    background-image: url('/assets/backgroundimagee.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

@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;
    width: auto;
}

.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;
    flex-grow: 1;
}

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;
    background-color: #66b266;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: block;
    text-align: center;
}

nav ul li a:hover {
    background-color: #007700;
    transform: scale(1.05);
}

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-direction: column;
    align-items: center;
    padding: 20px;
    color: white;
    flex: 1;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    justify-content: center; /* Center vertically */
}

.content-block {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px; /* Reduced padding */
    border-radius: 10px; /* Smaller border radius */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px; /* Reduced max width */
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Reduced gap between elements */
}

form label {
    font-size: 16px;
    color: white;
}

form input, form textarea, form button {
    width: 100%;
    padding: 8px; /* Reduced padding */
    border: none;
    border-radius: 5px;
}

form input, form textarea {
    background-color: #f3f3f3;
}

form button {
    background-color: #66b266;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 150px; /* Set a consistent width for buttons */
    text-align: center;
    margin: 0 auto; /* Center the button */
}

form button:hover {
    background-color: #007700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    form button {
        width: 150px; /* Ensure consistent button size in responsive view */
    }
}

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

}

