/* About Page Specific Styles */
.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.about-header {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 136, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: headerGlow 8s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.1);
    }
}

.about-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.about-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Statistics Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.05) 0%, rgba(26, 26, 26, 0.5) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 136, 0, 0.2);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section {
    margin-bottom: 4rem;
}

.section-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

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

.card {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.card-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-icon {
    font-size: 1.5rem;
}

.card-text {
    color: #ccc;
    line-height: 1.7;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background-color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-title {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-text {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.member-photo {
    height: 200px;
    width: 100%;
    background-color: #333;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.photo-placeholder {
    background-color: #333;
    color: #555;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-name {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-bio {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.6;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #777;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.history-timeline {
    position: relative;
    margin-top: 3rem;
    padding-left: 2rem;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: rgba(255, 136, 0, 0.3);
    border-radius: 3px;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(255, 136, 0, 0.5) 100%);
    border-radius: 3px;
    transition: height 0.3s ease-out;
}

.timeline-event {
    position: relative;
    padding-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-event.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-event.visible .timeline-dot {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 136, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 136, 0, 0);
    }
}

.timeline-date {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-title {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.timeline-description {
    color: #aaa;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

    .values-container {
        grid-template-columns: 1fr;
    }

    .history-timeline {
        padding-left: 1.5rem;
    }

    .timeline-dot {
        left: -2rem;
    }
}
