/* Reset and base styling */

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4CAF50;
    padding: 10px 20px;
}

.brand {
    position: relative; /* Enables positioning of the h6 element */
}

.brand a {
    text-decoration: none;
    color: white !important;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center; /* Aligns icon and text horizontally */
    gap: 8px; /* Adds space between the icon and the text */
    transition: color 0.3s ease;
}

.brand a:hover {
    color: rgb(255, 255, 255);
}


.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #f4a261;
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}


/* General styles */

header {
    background-color: #4CAF50;
    padding: 1rem;
    text-align: left;
}

header h1 {
    color: white;
}

header .team-name {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    text-align: right !important;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 2rem;
}

h2 {
    color: #4CAF50;
    text-align: center;
}

form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input, form select, form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}

footer {
    text-align: center;
    background-color: #4CAF50;
    padding: 1rem;
    color: white;
    margin-top: 20px;
}

/* Success Message */
#signupMessage {
    margin-top: 20px;
    font-weight: bold;
    color: green;
}
/* Home page specific styles */
.hero {
    background: url('https://d2eehagpk5cl65.cloudfront.net/img/q60/uploads/2022/04/zumaamericastwentyfive958310-scaled.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
}

.hero p {
    font-size: 1.5rem;
    margin-top: 10px;
}

.cta-buttons {
    margin-top: 30px;
}

.cta-buttons a {
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
}

.cta-buttons a:hover {
    background-color: #45a049;
}

.section {
    padding: 2rem 0;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    color: #4CAF50;
}

.section p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    padding: 20px;
    text-align: center;
}

.feature-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.feature-card h3 {
    margin-top: 15px;
    color: #4CAF50;
}

footer {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 30px;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2, h3 {
    color: #4CAF50;
    text-align: center;
}

.about-intro, .our-mission, .how-it-works, .our-impact, .get-involved {
    margin: 2rem 0;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-intro p, .our-mission p, .our-impact p, .get-involved p {
    font-size: 1.2rem;
    line-height: 1.6;
}

ol, ul {
    padding-left: 20px;
}

ol li, ul li {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.our-impact ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.our-impact ul li {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.cta-button {
    display: block;
    max-width: 200px;
    margin: 1rem auto;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #45a049;
}

/* Contact Page */
.contact-page {
    padding: 2rem;
    background-color: #f9f9f9;
}

.contact-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.details {
    flex: 1;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.details h3 {
    color: #4CAF50;
}

.map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.contact-form form label {
    font-weight: bold;
    margin-top: 1rem;
}

.contact-form form input, 
.contact-form form textarea, 
.contact-form form button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form form button {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
}

.contact-form form button:hover {
    background-color: #45a049;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
}

/* About Page Hero Section */
.about-hero {
    background: linear-gradient(to bottom right, #4CAF50, #a5d6a7);
    color: white;
    text-align: center;
    padding: 0.5rem;
    margin-bottom: 2rem;
}

.about-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-hero .slogan {
    font-size: 1.5rem;
    font-style: italic;
    margin-top: 0;
}

/* About Content Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
    color: #4CAF50;
    margin-top: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
}

.about-content ul {
    list-style: disc;
    margin: 1rem 0;
    padding-left: 2rem;
}

.about-content ul li {
    margin-bottom: 0.5rem;
}

/* Footer Styling */
footer {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .about-content {
        padding: 1rem;
    }

    .about-hero h2 {
        font-size: 2rem;
    }

    .about-hero .slogan {
        font-size: 1.2rem;
    }
}