/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    background: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc2626;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex: 1;
    justify-content: center;
}


.mobile-cta-items {
    display: none;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc2626;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #dc2626;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-btn-enroll {
    background: #dc2626;
    color: #ffffff;
}

.nav-btn-enroll:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.nav-btn-involve {
    background: #ffffff;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.nav-btn-involve:hover {
    background: #dc2626;
    color: #ffffff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a1a1a;
    cursor: pointer;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 5% 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
    position: relative;
    z-index: 1;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content .highlight {
    color: #05e3f3;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.memorial-text {
    font-style: italic;
    color: #dc2626;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-primary {
    background: #dc2626;
    color: #ffffff;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: #ffffff;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-secondary:hover {
    background: #dc2626;
    color: #ffffff;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
}

/* Stats Section */
.stats {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5%;
    position: relative;
    z-index: 10;
}

.stats .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #060ae9;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: #e5e5e5;
}

/* About Us Section */
.about-us {
    padding: 5rem 5%;
    background: #ffffff;
}

.about-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: #fef2f2;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #f5f5f5;
    transition: all 0.3s;
}

.about-card:hover {
    border-color: #7d1b1b;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: #750303;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-card h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.target-partnerships {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.target-audience,
.partnerships {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #f5f5f5;
}

.target-audience h3,
.partnerships h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.target-audience h3 i,
.partnerships h3 i {
    color: #6e0404;
    font-size: 1.8rem;
}

.partnerships > p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.target-audience ul,
.partnerships ul {
    list-style: none;
    padding: 0;
}

.target-audience li,
.partnerships li {
    padding: 0.75rem 0;
    color: #1a1a1a;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.target-audience li i,
.partnerships li i {
    color: #610404;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background: #ffffff;
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #f5f5f5;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #dc2626;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #fef2f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #690606;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #4a4a4a;
}

/* Impact Section */
.impact {
    padding: 5rem 5%;
    background: #fef2f2;
}

.impact .container {
    max-width: 1200px;
    margin: 0 auto;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.impact-text h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.impact-text p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.impact-list {
    list-style: none;
}

.impact-list li {
    padding: 0.75rem 0;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.impact-list i {
    color: #2308ec;
    font-size: 1.2rem;
}

.impact-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.impact-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* CTA Section */
.cta-section {
    padding: 5rem 5%;
    background: #680202;
    color: #ffffff;
    text-align: center;
}

.cta-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #610404;
}

.cta-section .btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-section .btn-secondary:hover {
    background: #ffffff;
    color: #510202;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: #ffffff;
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #c81e1e;
    width: 40px;
    height: 40px;
    background: #fef2f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #4a4a4a;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #fef2f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bb1c1c;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #641111;
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-form {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #620404;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 2rem 5%;
    text-align: center;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* News Section */
.news {
    padding: 5rem 5%;
    background: #ffffff;
}

.news .container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #f5f5f5;
    transition: all 0.3s;
}

.news-card:hover {
    border-color: #dc2626;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: #580303;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.news-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.news-card p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    color: #4f0303;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.news-link:hover {
    gap: 1rem;
}

/* Team Section */
.team {
    padding: 5rem 5%;
    background: #fef2f2;
}

.team .container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.team-member {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #f5f5f5;
    transition: all 0.3s;
}


.team-member:hover {
    border-color: #210101;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.member-photo {
    width: 205px;
    height: 220px;
    background: linear-gradient(135deg, #390c0c 0%, #570202 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3.5rem;
    overflow: hidden;
}


.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #3b0202;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.member-social .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 2rem 5%;
    text-align: center;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: relative;
        margin-left: auto;
        z-index: 1200;
        padding: 0.5rem;
        background: transparent;
        border: none;
        border-radius: 6px;
        font-size: 1.6rem;
        color: #1a1a1a;
        -webkit-tap-highlight-color: transparent;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }

    .member-photo {
        width: 140px;
        height: 140px;
    }

    .nav-cta {
        display: none;
    }

    .logo {
        font-size: 1.1rem;
        flex: 1;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-menu-btn {
        margin-left: 0.75rem;
    }

    .mobile-cta-items {
        display: none;
        width: 100%;
        list-style: none;
    }

    .nav-links.active .mobile-cta-items {
        display: block;
    }

    .mobile-cta-items .nav-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
    }

    .hero .container,
    .impact-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .target-partnerships {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image-placeholder {
        height: 250px;
        font-size: 3rem;
    }

    .hero-img {
        height: 300px;
    }

    .impact-image-placeholder {
        height: 250px;
        font-size: 3rem;
    }

    .impact-img {
        height: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }
}
