
:root {
    --primary-color: #0d2c54; /* Dark Navy from logo */
    --secondary-color: #f1f3f5; /* Light grey background */
    --accent-color: #007bff; /* A bright, techy blue */
    --text-color: #343a40;
    --white-color: #ffffff;
    --border-radius: 8px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

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

/* Header & Navigation */
header {
    background-color: var(--white-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background-color: var(--secondary-color);
    min-height: calc(100vh - 72px); /* 72px is header height */
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    padding-right: 2rem;
}

.main-logo {
    margin-bottom: 1.5rem;
}

.main-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    max-width: 50%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

.content-section.alt-bg {
    background-color: var(--secondary-color);
}

.content-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: #6c757d;
}

/* Goals Section */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.goal-card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.goal-card i {
    color: var(--accent-color);
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.goal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Resources Section */
.resource-grid {
    display: grid;
    gap: 1.5rem;
}

.resource-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    background-color: #e7f1ff;
    color: var(--accent-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}
.resource-icon i {
    width: 24px;
    height: 24px;
}

.resource-text h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.resource-text p {
    font-size: 0.9rem;
    color: #6c757d;
}

.resource-arrow {
    margin-left: auto;
    color: #ced4da;
    transition: color 0.3s ease;
}

.resource-card:hover .resource-arrow {
    color: var(--accent-color);
}

/* Supporting Orgs Section */
.orgs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2.5rem;
    align-items: center;
    margin-top: 3rem;
}

.org-logo {
    text-align: center;
}

.org-logo img {
    max-width: 160px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
}

.org-logo img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}


/* Contact Form */
#contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border-radius: var(--border-radius);
    border: 1px solid #ced4da;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

#contact-form button {
    justify-self: start;
}

#form-success-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #e7f1ff;
    color: var(--primary-color);
    border: 1px solid var(--accent-color);
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 700px;
    margin: 1.5rem auto 0 auto;
}

.hidden {
    display: none;
}

/* Social Media Section */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--primary-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.social-links i {
    width: 32px;
    height: 32px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin: 0.25rem 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1rem;
    }
    .hero-content, .hero-image {
        max-width: 100%;
        padding-right: 0;
    }
    .hero-content {
        margin-bottom: 2rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px; /* Header height */
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        padding: 1rem 0;
        text-align: center;
        gap: 0;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        padding: 1rem;
    }
    .menu-button {
        display: block;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 2rem; }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .content-section {
        padding: 3rem 0;
    }
    .content-section h2 {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .resource-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .resource-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .resource-arrow {
        display: none;
    }
}
    