/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f7f3;
    color: #333;
}

/* Full screen welcome section */
#welcome {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height */
    background: linear-gradient(45deg, #5f7760, #90a97b); /* Gradient background */
    color: white;
    text-align: center;
}

.welcome-container h1 {
    font-size: 4em;
    margin: 0;
}

.welcome-container p {
    font-size: 1.5em;
    margin-top: 20px;
    max-width: 700px;
}

.btn-main {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 25px;
    background-color: #f4a261; /* Gold background */
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-main:hover {
    background-color: #e59866; /* Darker gold on hover */
    transform: scale(1.05);
}

.btn-main:active {
    transform: scale(1);
}

/* Header and Navbar */
header {
    background-color: #5f7760;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    color: white;
    font-size: 1.8em;
}

.nav-links {
    list-style-type: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #f4a261;
}

/* Flex container to hold main content and resources side by side */
.main-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* Resources section on the left */
.resources {
    flex: 1;
    max-width: 300px;
    margin-right: 20px;
    padding: 20px;
    background-color: #f3eae3;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.resources h2 {
    font-size: 1.8em;
    color: #35524a;
    margin-bottom: 1em;
}

.resources ul {
    list-style-type: disc;
    padding-left: 20px;
}

.resources ul li {
    margin-bottom: 10px;
    color: #555;
}

.resources ul li a {
    text-decoration: none;
    color: #5f7760;
    font-weight: bold;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.resources ul li a:hover {
    color: #f4a261;
    text-decoration: underline;
}

/* Main content on the right */
.main-content {
    flex: 3;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

section {
    padding: 20px;
    margin-bottom: 40px;
}

h2 {
    font-size: 2em;
    color: #5f7760;
    margin-bottom: 0.5em;
}

p {
    font-size: 1.1em;
    line-height: 1.6em;
    color: #555;
}

/* Contact Us Section Styles */
#contact {
    margin-top: 40px;
}

#contact h2 {
    font-size: 2em;
    color: #5f7760;
    margin-bottom: 0.5em;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 1.2em;
    color: #333;
}

input, textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #f9f7f3;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #5f7760;
}

button.btn-main {
    align-self: flex-start;
    padding: 12px 24px;
    background-color: #f4a261;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button.btn-main:hover {
    background-color: #e59866;
    transform: scale(1.05);
}

button.btn-main:active {
    transform: scale(1);
}

/* Footer Styles */
footer {
    background-color: #5f7760;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
