/* Color Variables */
:root {
    --primary-red: #bb0000;
    --red-light: #ff3535;
    --red-lighter: #ff5e5e;
    --red-lightest: #ff9f9f;
    --dark-bg: #121212;
    --light-bg: #fff4f4;
}

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

body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: var(--dark-bg);
    line-height: 1.6;
    background-color: #ffffff;
}

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

/* Header Styles */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-bg);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-red);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-bg);
    transition: all 0.3s ease;
}

/* Banner Section */
.banner-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.banner-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.banner-text-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(2px);
}

.banner-title {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #ffffff;
}

.banner-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.95;
    color: #ffffff;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.content-block {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.content-block-text-only {
    grid-template-columns: 1fr;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.content-block:nth-child(even) {
    animation-delay: 0.1s;
}

.content-block:nth-child(3) {
    animation-delay: 0.2s;
}

.content-block:nth-child(4) {
    animation-delay: 0.3s;
}

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

.content-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 220px;
    height: 220px;
    max-width: 100%;
    flex-shrink: 0;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.content-block:hover .content-image img {
    transform: scale(1.05);
}

.content-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--red-lightest) 0%, var(--red-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
    padding: 10px;
    font-weight: 500;
}

.content-text {
    position: relative;
    z-index: 2;
}

.content-block h2 {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-bg);
}

.content-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--red-lightest) 0%, transparent 70%);
    border-radius: 50% 0 0 0;
    opacity: 0.3;
    z-index: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.content-block:hover .content-decoration {
    transform: scale(1.2);
    opacity: 0.5;
}

.section-heading {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-size: 2.2rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-light) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 90px 0 80px;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero__content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.about-hero__content h1 {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 12px;
    display: inline-block;
}

.about-hero__content p {
    font-size: 1.2rem;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.6);
    padding: 12px 30px;
    border-radius: 12px;
    display: inline-block;
    opacity: 0.95;
}

.about-mission {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.about-mission__card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(187, 0, 0, 0.1);
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-mission__card h2 {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-mission__card p + p {
    margin-top: 1.25rem;
}

.about-values {
    padding: 80px 0;
}

.about-values__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.about-value {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 12px 25px rgba(18, 18, 18, 0.08);
    border-top: 4px solid var(--primary-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value h3 {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.about-value p {
    line-height: 1.7;
}

.about-value:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(18, 18, 18, 0.12);
}

.about-impact {
    background: linear-gradient(120deg, #fff4f4 0%, #ffffff 50%, #ffeded 100%);
    padding: 80px 0;
}

.about-impact__stats {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.impact-stat {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(18, 18, 18, 0.08);
}

.impact-number {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-size: 2.6rem;
    color: var(--primary-red);
    display: block;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1rem;
    line-height: 1.6;
}

.about-story {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.about-story__timeline {
    position: relative;
    padding-left: 25px;
    border-left: 3px solid var(--red-light);
    display: grid;
    gap: 35px;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 25px;
}

.timeline-dot {
    position: absolute;
    left: -35px;
    top: 8px;
    width: 16px;
    height: 16px;
    background-color: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(187, 0, 0, 0.15);
}

.timeline-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(18, 18, 18, 0.08);
}

.timeline-content h3 {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 1.6rem;
    color: var(--primary-red);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    line-height: 1.7;
}

.about-cta {
    padding: 80px 0 100px;
}

.about-cta__card {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-light) 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(187, 0, 0, 0.25);
}

.about-cta__card h2 {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.about-cta__card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: var(--primary-red);
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(18, 18, 18, 0.15);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-light) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 12px;
    display: inline-block;
}

.page-header__subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 12px 30px;
    border-radius: 12px;
    display: inline-block;
    opacity: 0.95;
}

.page-content {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.page-content .content-block {
    max-width: 900px;
    margin: 0 auto 30px;
}

/* Activities List */
.activities-list {
    list-style: none;
    padding: 0;
}

.activity-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-red);
}

.activity-item h3 {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.activity-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-bg);
}

/* Contact Form */
.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-bg);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background-color: var(--primary-red);
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--red-light);
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

/* Footer */
.main-footer {
    background-color: var(--dark-bg);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand h3 {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

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

.footer-description {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-contact {
    margin-top: 15px;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--red-lighter);
}

.footer-links h4 {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        padding: 20px;
        min-width: 200px;
        display: none;
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .banner-section {
        min-height: 400px;
        padding: 60px 20px;
    }
    
    .banner-text-overlay {
        padding: 30px 20px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .content-block {
        padding: 25px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-image {
        width: 100%;
        max-width: 220px;
        height: 220px;
        margin: 0 auto;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .content-decoration {
        width: 80px;
        height: 80px;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .about-impact__stats {
        grid-template-columns: 1fr;
    }

    .about-story__timeline {
        padding-left: 15px;
    }

    .timeline-dot {
        left: -25px;
    }

    .about-cta__card {
        padding: 40px 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header__subtitle {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .banner-section {
        min-height: 350px;
        padding: 50px 20px;
    }
    
    .banner-text-overlay {
        padding: 25px 15px;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .content-section {
        padding: 40px 0;
    }

    .about-hero__content h1 {
        font-size: 2.2rem;
    }

    .about-hero__content p {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .page-header__subtitle {
        font-size: 0.9rem;
        padding: 8px 18px;
    }

    .about-mission__card {
        padding: 30px;
    }

    .about-cta__card h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px;
    }
}

