﻿/* mission-styles.css */

.mission-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
.page-header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
    color: white;
    border-radius: 8px;
    margin-bottom: 40px;
}

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

.mission-tagline {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Content Sections */
.content-section {
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.alt-section {
    background: #f8f9fa;
}

.content-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #27ae60;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-style: italic;
}

/* Mission Statement */
.mission-statement {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid #27ae60;
}

    .mission-statement p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #2c3e50;
        margin: 0;
    }

/* Mission Pillars */
.mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pillar {
    padding: 20px;
    background: white;
    border-radius: 6px;
    border-top: 4px solid #27ae60;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .pillar h3 {
        color: #27ae60;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .pillar p {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.5;
    }

/* Objectives */
.objectives {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.objective {
    padding: 20px;
    background: white;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

    .objective h3 {
        color: #2c3e50;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .objective p {
        color: #555;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .objective ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    .objective li {
        padding: 5px 0;
        padding-left: 25px;
        position: relative;
        color: #666;
        font-size: 0.95rem;
    }

        .objective li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
        }

/* Focus Areas */
.focus-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.focus-area {
    padding: 20px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

    .focus-area h3 {
        color: #e74c3c;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .focus-area > p {
        color: #666;
        margin-bottom: 15px;
        font-size: 0.95rem;
    }

    .focus-area ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    .focus-area li {
        padding: 4px 0;
        padding-left: 20px;
        position: relative;
        color: #555;
        font-size: 0.9rem;
    }

        .focus-area li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #e74c3c;
            font-size: 1.2rem;
        }

/* Principles */
.principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.principle {
    padding: 20px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

    .principle h4 {
        color: #27ae60;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .principle p {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
    }

/* National Goals */
.national-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.goal {
    padding: 20px;
    background: white;
    border-radius: 6px;
    border-top: 4px solid #9b59b6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .goal h3 {
        color: #9b59b6;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .goal p {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
    }

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: #219653;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background: white;
        color: #2c3e50;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .mission-page {
        padding: 15px;
    }

    .page-header {
        padding: 30px 20px;
    }

        .page-header h1 {
            font-size: 2rem;
        }

    .mission-tagline {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 20px;
    }

        .content-section h2 {
            font-size: 1.6rem;
        }

    .mission-pillars,
    .focus-areas,
    .principles,
    .national-goals {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .mission-tagline {
        font-size: 1rem;
    }

    .content-section h2 {
        font-size: 1.4rem;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }
}
