/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

/* Reset some browser defaults */
body, h1, h2, p, label {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fafafa; /* Off-white Background */
    /*  */
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

nav .nav-logo {
    display: flex;
    align-items: center;
}

nav .nav-logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

nav .nav-logo h1 {
    font-size: 1.5em;
    color: #4caf50; /* Cucumber Green */
}

header {
    text-align: center;
    padding-bottom: 20px;
}

header .hero-image {
    background: url('assets/hero-3.jpeg') no-repeat center center;
    background-size: cover;
    height: 400px; /* Adjust this as needed */
    position: relative;
    border-radius: 10px;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.hero-text h2 {
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* To enhance readability */
}

.hero-text p {
    font-size: 1.2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* To enhance readability */
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    margin-bottom: 20px;
    font-weight: 700;
    color: #4caf50; /* Cucumber Green */
}

section p {
    margin-bottom: 20px;
}

form {
    margin-top: 20px;
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

form input[type="submit"] {
    background-color: #4caf50; /* Cucumber Green */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    background-color: #fafafa; /* Off-white Background */
    color: #333;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}
