/* About Page Styles */

/* Hero Section */
.about-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #A78BFA 0%, #818CF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    padding: 80px 20px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #A78BFA;
    margin-bottom: 30px;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.02);
}

.philosophy-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #A78BFA;
    margin-bottom: 50px;
    text-align: center;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    border-color: rgba(167, 139, 250, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.15);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.philosophy-icon svg {
    width: 100%;
    height: 100%;
    stroke: #A78BFA;
}

.philosophy-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.philosophy-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #A78BFA;
    margin-bottom: 10px;
    text-align: center;
}

.team-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: rgba(167, 139, 250, 0.4);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.15);
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(167, 139, 250, 0.1);
    border: 3px solid rgba(167, 139, 250, 0.3);
}

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

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(79, 70, 229, 0.2) 100%);
}

.photo-placeholder svg {
    width: 60px;
    height: 60px;
    stroke: rgba(167, 139, 250, 0.6);
}

.team-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.team-role {
    font-size: 1rem;
    color: #A78BFA;
    font-weight: 500;
    margin-bottom: 20px;
}

.team-bio {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
}

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

.mission-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #A78BFA;
    margin-bottom: 30px;
}

.mission-content blockquote {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding: 0 40px;
}

.mission-content blockquote::before,
.mission-content blockquote::after {
    content: '"';
    font-size: 4rem;
    color: rgba(167, 139, 250, 0.3);
    position: absolute;
    font-family: Georgia, serif;
}

.mission-content blockquote::before {
    top: -20px;
    left: 0;
}

.mission-content blockquote::after {
    bottom: -50px;
    right: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.cta-section > .container > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #9333EA 0%, #4F46E5 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(147, 51, 234, 0.4);
}

.cta-buttons .btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #A78BFA;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(167, 139, 250, 0.5);
    transition: all 0.3s ease;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(167, 139, 250, 0.1);
    border-color: #A78BFA;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 15px 60px;
    }

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

    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .story-section,
    .philosophy-section,
    .team-section,
    .mission-section,
    .cta-section {
        padding: 60px 15px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-card {
        padding: 30px 25px;
    }

    .mission-content blockquote {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .mission-content blockquote::before,
    .mission-content blockquote::after {
        font-size: 3rem;
    }

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

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

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.9rem;
    }

    .story-content h2,
    .philosophy-section h2,
    .team-section h2,
    .mission-content h2,
    .cta-section h2 {
        font-size: 1.6rem;
    }

    .philosophy-card {
        padding: 30px 20px;
    }

    .team-photo {
        width: 120px;
        height: 120px;
    }
}
