/* Mission Page Specific Styles */

/* Mission Hero Section */
.mission-hero {
    padding: 80px 0 40px;
    background: var(--bg-body);
}

.mission-hero .section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-hero .section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--flash-green), var(--flash-yellow));
    color: var(--flash-black);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

body.dark-mode .mission-hero .section-badge {
    background: linear-gradient(135deg, #7ed957, #fff44d);
}

.mission-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-colour);
}

.mission-hero .highlight-text {
    color: var(--flash-green);
}

.mission-hero .section-subtitle {
    font-size: 1.15rem;
    color: var(--text-colour);
    opacity: 0.75;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission Journey Timeline Section */
.mission-journey-section {
    padding: 60px 0;
    background: var(--bg-body);
}

.mission-journey-section .section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.mission-journey-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-colour);
}

.timeline-carousel-wrapper {
    position: relative;
    padding: 20px 0 50px;
}

.timeline-swiper {
    padding: 0 50px;
}

.timeline-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.timeline-card {
    background: var(--bg-body);
    border: 2px solid rgba(65, 173, 73, 0.3);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--flash-green), var(--flash-yellow));
}

.timeline-card:hover {
    border-color: var(--flash-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(65, 173, 73, 0.2);
}

.timeline-card-future {
    border-color: var(--flash-yellow);
}

.timeline-card-future::before {
    background: linear-gradient(90deg, var(--flash-yellow), var(--flash-green));
}

.timeline-year {
    display: inline-block;
    padding: 6px 16px;
    background: var(--flash-green);
    color: var(--flash-black);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    width: fit-content;
}

.timeline-card-future .timeline-year {
    background: var(--flash-yellow);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-colour);
    margin-bottom: 12px;
    line-height: 1.3;
}

.timeline-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-colour);
    opacity: 0.85;
    margin: 0;
}

/* Timeline Navigation Buttons */
.timeline-nav-btn {
    width: 40px;
    height: 40px;
    background: var(--flash-green);
    border-radius: 50%;
    color: var(--flash-black);
    transition: all 0.3s ease;
}

.timeline-nav-btn:hover {
    background: var(--flash-yellow);
    transform: scale(1.1);
}

.timeline-nav-btn::after {
    font-size: 18px;
    font-weight: 900;
    color: var(--flash-black);
}

.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Timeline Pagination */
.timeline-pagination {
    bottom: 0 !important;
}

.timeline-pagination .swiper-pagination-bullet {
    background: var(--flash-green);
    opacity: 0.4;
    width: 10px;
    height: 10px;
}

.timeline-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--flash-green);
}

/* Mission Stats Section */
.mission-stats-section {
    padding: 40px 0;
}

.mission-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 10px 0;
}

.mission-stat {
    flex: 1;
    min-width: 200px;
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--border-radius);
    background-color: var(--bg-body);
    box-shadow: 0 4px 8px var(--box-shadow);
    border-bottom: 3px solid var(--flash-green);
}

.stat-number {
    font-size: 48px;
    font-weight: var(--fWeight-bold);
    margin-bottom: 10px;
    color: var(--flash-green);
}

.stat-label {
    font-size: var(--fSize-med);
    font-weight: var(--fWeight-med);
}

@media screen and (max-width: 799px) {
    .timeline-swiper {
        padding: 0 20px;
    }

    .timeline-nav-btn {
        width: 35px;
        height: 35px;
    }

    .timeline-card {
        padding: 20px;
    }

    .timeline-title {
        font-size: 1.1rem;
    }

    .timeline-text {
        font-size: 0.9rem;
    }
}

/* Mission Pillars Section */
.mission-pillars-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.pillars-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../assets/img/three-pillars-columns.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
}

.mission-pillars-section .container {
    position: relative;
    z-index: 1;
}

.mission-pillars-section .section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.mission-pillars-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-colour);
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.pillar-card {
    border-left: 4px solid var(--flash-green);
    padding: 24px 24px 24px 28px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
}

body.light-mode .pillar-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(65, 173, 73, 0.2);
    border-left: 4px solid var(--flash-green);
}

.pillar-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(65, 173, 73, 0.2);
}

.pillar-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-colour);
}

.pillar-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-colour);
    opacity: 0.9;
}

.mission-statement-box {
    padding: 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    box-shadow: 0 4px 8px var(--box-shadow);
    border-bottom: 3px solid var(--flash-green);
    text-align: center;
}

body.light-mode .mission-statement-box {
    background: rgba(255, 255, 255, 0.8);
}

.mission-statement-box p {
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--text-colour);
    margin: 0;
}

/* Mission CTA Buttons */
.mission-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 50px;
}

.mission-cta-buttons .cta-button.discord {
    background: #5865F2;
    color: white !important;
    border: none;
}

.mission-cta-buttons .cta-button.discord:hover {
    background: #4752C4;
    color: white !important;
}

/* Responsive Design for Mission Page */
@media (max-width: 768px) {
    .mission-hero {
        padding: 60px 0 30px;
    }

    .mission-hero .hero-title {
        font-size: 2.25rem;
    }

    .mission-hero .section-subtitle {
        font-size: 1rem;
    }

    .mission-journey-section h2 {
        font-size: 1.75rem;
    }

    .mission-stats {
        flex-direction: column;
    }

    .mission-stat {
        min-width: 100%;
    }

    .mission-cta-buttons {
        flex-direction: column;
    }

    .mission-cta-buttons .cta-button {
        width: 100%;
        justify-content: center;
    }
}
