/* ==========================================================================
   About Page Styles
   ONLY using: golden-green (#8B9A46), dark-red (#8B2C2C), pale-yellow (#FFF8DC)
   ========================================================================== */

/* About Hero */
.about-hero {
    padding: 6rem 2rem 3rem;
    background: linear-gradient(135deg, 
        rgba(139, 154, 70, 0.08) 0%, 
        rgba(139, 44, 44, 0.05) 100%);
    text-align: center;
}

.about-hero h1 {
    color: var(--dark-red);
    margin-bottom: 1.5rem;
}

.about-hero .hero-purpose {
    color: var(--dark-red);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 1.5rem;
    font-style: italic;
    opacity: 0.9;
}

.about-hero .hero-subtitle {
    color: var(--dark-red);
    opacity: 0.85;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Our Story Section */
.our-story {
    padding: 5rem 2rem;
    background: var(--pale-yellow);
}

.story-title {
    text-align: center;
    color: var(--dark-red);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.story-tagline {
    text-align: center;
    color: var(--golden-green);
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 3rem;
}

.story-sections {
    max-width: 900px;
    margin: 0 auto;
}

.story-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(139, 154, 70, 0.2);
}

.story-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.story-section h3 {
    color: var(--golden-green);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    padding-left: 1rem;
    border-left: 4px solid var(--golden-green);
}

.story-section p {
    color: var(--dark-red);
    opacity: 0.9;
    margin-bottom: 1.25rem;
    line-height: 1.85;
    font-size: 1.05rem;
}

.story-section p:last-child {
    margin-bottom: 0;
}

.story-section em {
    color: var(--dark-red);
    font-style: italic;
}

.story-section strong {
    color: var(--golden-green);
}

.evolution-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.evolution-list li {
    color: var(--dark-red);
    opacity: 0.9;
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(139, 154, 70, 0.1);
}

.evolution-list li:last-child {
    border-bottom: none;
}

.evolution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--golden-green);
    font-weight: bold;
}

.story-closing {
    background: rgba(139, 154, 70, 0.08);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(139, 154, 70, 0.2);
    margin-top: 2rem;
}

.story-closing h3 {
    border-left: none;
    padding-left: 0;
    text-align: center;
}

.story-highlight {
    color: var(--dark-red);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem 0;
}

.story-motto {
    color: var(--golden-green);
    font-size: 1.5rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--golden-green);
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, 
        rgba(139, 154, 70, 0.05), 
        transparent);
}

.mission-vision-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: var(--pale-yellow);
    border: 2px solid rgba(139, 154, 70, 0.3);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s;
}

.mission-card:hover,
.vision-card:hover {
    border-color: var(--golden-green);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 44, 44, 0.1);
}

.mission-card h3,
.vision-card h3 {
    color: var(--dark-red);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: var(--dark-red);
    opacity: 0.85;
    line-height: 1.7;
}

/* Core Values */
.core-values {
    padding: 5rem 2rem;
    background: var(--pale-yellow);
}

.core-values .section-title {
    text-align: center;
    color: var(--dark-red);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.core-values .section-subtitle {
    text-align: center;
    color: var(--dark-red);
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 248, 220, 0.6);
    border: 2px solid rgba(139, 154, 70, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--golden-green);
    background: rgba(139, 154, 70, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 44, 44, 0.1);
}

.value-card h3 {
    color: var(--golden-green);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    padding-top: 0.5rem;
}

.value-card p {
    color: var(--dark-red);
    opacity: 0.85;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, 
        rgba(139, 44, 44, 0.03) 0%, 
        rgba(139, 154, 70, 0.05) 100%);
}

.team-section .section-title {
    text-align: center;
    color: var(--dark-red);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.team-section .section-subtitle {
    text-align: center;
    color: var(--dark-red);
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: var(--pale-yellow);
    border: 2px solid rgba(139, 154, 70, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.team-member:hover {
    border-color: var(--golden-green);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 44, 44, 0.15);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: var(--dark-red);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--golden-green);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--dark-red);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Team Zigzag Layout */
.team-zigzag {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--pale-yellow);
    border: 2px solid rgba(139, 154, 70, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.team-member-row:hover {
    border-color: var(--golden-green);
    box-shadow: 0 15px 40px rgba(139, 44, 44, 0.1);
    transform: translateY(-3px);
}

.team-member-row.reverse {
    flex-direction: row-reverse;
}

.team-member-row.reverse .member-content {
    text-align: right;
}

.member-photo {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--golden-green);
    box-shadow: 0 10px 30px rgba(139, 44, 44, 0.15);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-content {
    flex: 1;
}

.member-content h3 {
    color: var(--dark-red);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-member-row .member-role {
    color: var(--golden-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member-row .member-bio {
    color: var(--dark-red);
    opacity: 0.85;
    font-size: 1rem;
    line-height: 1.7;
}

/* Zigzag Responsive */
@media (max-width: 768px) {
    .team-member-row,
    .team-member-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .team-member-row.reverse .member-content {
        text-align: center;
    }

    .member-photo {
        width: 150px;
        height: 150px;
    }

    .team-zigzag {
        gap: 2rem;
    }
}

/* Join Us CTA */
.join-us-cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, 
        var(--golden-green), 
        rgba(139, 154, 70, 0.8));
    border-radius: 0;
}

.join-us-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.join-us-cta h2 {
    color: var(--pale-yellow);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-us-cta p {
    color: var(--pale-yellow);
    opacity: 0.95;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 968px) {
    .story-sections {
        max-width: 100%;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 4rem 1rem 2rem;
    }

    .about-hero h1 {
        font-size: 1.75rem;
    }

    .about-hero .hero-purpose {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-tagline {
        font-size: 1.1rem;
    }

    .story-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .story-section h3 {
        font-size: 1.25rem;
    }

    .story-section p {
        font-size: 1rem;
    }

    .story-closing {
        padding: 1.5rem;
    }

    .story-motto {
        font-size: 1.25rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

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

.story-section,
.value-card,
.team-member {
    animation: fadeInUp 0.6s ease-out;
}

.story-section:nth-child(2) {
    animation-delay: 0.1s;
}

.story-section:nth-child(3) {
    animation-delay: 0.2s;
}

.story-section:nth-child(4) {
    animation-delay: 0.3s;
}

.story-section:nth-child(5) {
    animation-delay: 0.4s;
}

.story-section:nth-child(6) {
    animation-delay: 0.5s;
}

.value-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.team-member:nth-child(even) {
    animation-delay: 0.15s;
}