/* About Page Specific Styles */

:root {
    --primary-color: #667eea;
    --accent-color: #667eea;
    --success-color: #10b981;
}

.about-main {
    min-height: 100vh;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.about-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-header .lead {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    margin-bottom: 4rem;
}

.mission-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mission-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.mission-statement {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    border-color: var(--primary-color);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.pillar h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pillar p {
    color: #64748b;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.story-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.story-challenges {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.story-challenges li {
    color: #475569;
    margin-bottom: 1rem;
    list-style-position: inside;
}

/* Values Section */
.values-section {
    margin-bottom: 4rem;
}

.values-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Technology Section */
.technology-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.technology-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.tech-content > p {
    font-size: 1.1rem;
    color: #475569;
    text-align: center;
    margin-bottom: 3rem;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.tech-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.tech-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Vision Section */
.vision-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 16px;
    color: white;
    margin-bottom: 4rem;
}

.vision-section h2 {
    color: white;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.vision-statement {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.vision-goals h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.vision-goals ul {
    list-style: none;
    padding: 0;
}

.vision-goals li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.vision-goals li strong {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Join Section */
.join-section {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.join-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.join-content p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.join-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent-color);
}


.btn-outline {
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2rem;
    }
    
    .about-header .lead {
        font-size: 1.1rem;
    }
    
    .mission-pillars {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-stack {
        grid-template-columns: 1fr;
    }
    
    .join-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .join-actions a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .editions-overview {
        grid-template-columns: 1fr;
    }

    .editions-actions {
        flex-direction: column;
        align-items: center;
    }

    .editions-actions a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Editions Section */
.editions-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.editions-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.editions-content > p {
    font-size: 1.1rem;
    color: #475569;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.editions-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.edition-overview {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.edition-overview:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.edition-overview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.edition-overview h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.edition-overview > p:first-of-type {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.edition-overview > p:nth-of-type(2) {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.edition-overview ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.edition-overview li {
    color: #475569;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.edition-overview li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.editions-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    margin-top: 3rem;
}

.editions-cta p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.editions-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}