/* About Page */

.page-header {
    background: linear-gradient(rgba(10, 92, 54, 0), rgba(10, 92, 54, 0)), url('../img/about-1.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    min-height: 120px;
}

.founder-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.founder-card:hover {
    transform: translateY(-10px);
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border: 5px solid var(--light-green);
}

.mission-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.mission-item:hover {
    transform: translateY(-10px);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
    font-size: 1.8rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-green);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 1rem 0;
    position: relative;
    width: 50%;
    clear: both;
}

.timeline-item:nth-child(odd) {
    float: left;
    text-align: right;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    float: right;
    padding-left: 3rem;
}

.timeline-content {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    transform: rotate(45deg);
    right: -10px;
    top: 20px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    transform: rotate(45deg);
    left: -10px;
    top: 20px;
}

.timeline-year {
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        float: none !important;
        padding: 1rem 0 1rem 50px !important;
        text-align: left !important;
    }

    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -10px !important;
        right: auto !important;
        top: 20px;
    }

    .page-header {
        padding: 100px 0 60px;
    }
}

.timeline::after {
    content: "";
    display: table;
    clear: both;
} 