/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #C00000;
    --red-light: #E63946;
    --red-dark: #9B0000;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --grey: #767676;
    --light-grey: #E5E5E5;
    --border-grey: #D4D4D4;
}

html {
    scroll-behavior: smooth;
}

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

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

.display-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--black);
    letter-spacing: 1px;
}

.logo-full {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--red);
}

.btn-nav {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-nav:hover {
    background: var(--red-dark);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--black) 0%, var(--black) 65%, var(--red) 65%, var(--red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

.accent-bar {
    width: 80px;
    height: 4px;
    background: var(--red);
    margin-bottom: 20px;
    animation: slideIn 0.5s ease-out;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-tagline {
    font-size: 28px;
    color: var(--red-light);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--light-grey);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    font-size: 12px;
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
    margin: 10px auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--red);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--red);
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--grey);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Mission Section */
.mission-section {
    background: var(--white);
}

.mission-statement {
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
    color: var(--black);
    max-width: 900px;
    margin: 0 auto 60px;
    font-weight: 500;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--red);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.value-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-card p {
    font-size: 14px;
    color: var(--black);
    line-height: 1.6;
}

/* Problem Section */
.problem-section {
    background: var(--light-grey);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-card p {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.5;
}

/* Programs Overview */
.programs-overview {
    background: var(--white);
}

.programs-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
    border-left: 4px solid var(--red);
    padding-left: 15px;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.program-card {
    background: var(--black);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.program-card:nth-child(2n) {
    background: var(--red);
}

.program-card:nth-child(3n) {
    background: var(--light-grey);
    color: var(--black);
    border: 2px solid var(--border-grey);
}

.program-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: 700;
    opacity: 0.3;
}

.program-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.program-card p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 15px;
}

.card-link {
    display: inline-block;
    color: inherit;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: transform 0.3s;
}

.card-link:hover {
    transform: translateX(5px);
}

/* Youth Programs Highlight */
.youth-programs-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.youth-program-card {
    background: var(--red);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.youth-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(192, 0, 0, 0.3);
}

.youth-program-card.ground-zero {
    background: var(--black);
}

.youth-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.youth-program-card h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.youth-motto {
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.95;
}

.youth-program-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Impact Section */
.impact-section {
    background: var(--black);
    color: var(--white);
}

.impact-section .section-header h2 {
    color: var(--white);
}

.impact-section .section-line {
    background: var(--red);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.impact-stat {
    text-align: center;
    padding: 40px 20px;
    background: rgba(192, 0, 0, 0.2);
    border-radius: 10px;
    transition: transform 0.3s;
}

.impact-stat:hover {
    transform: translateY(-5px);
    background: rgba(192, 0, 0, 0.3);
}

.impact-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 15px;
}

.impact-label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    background: var(--red);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--light-grey);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-tagline {
    color: var(--red-light);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-nonprofit {
    font-size: 12px;
    color: var(--grey);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--light-grey);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--red-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--grey);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 14px;
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--red-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .values-grid,
    .stats-grid,
    .program-cards,
    .youth-programs-highlight {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
