/* Enhanced About Page Styles */

/* Hero Section with Storytelling Elements */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.1"><path d="M20 20h60v60H20z" fill="none" stroke="currentColor" stroke-width="2"/><circle cx="30" cy="30" r="3"/><circle cx="70" cy="70" r="3"/><path d="M30 30L70 70" stroke="currentColor" stroke-width="1"/></svg>') repeat;
    background-size: 80px 80px;
    animation: craftPattern 25s linear infinite;
}

@keyframes craftPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.about-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 2;
}

/* Story Timeline */
.story-timeline {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #667eea, #764ba2, #f093fb);
    transform: translateX(-50%);
    border-radius: 2px;
}

.story-item {
    position: relative;
    margin: 4rem 0;
    display: flex;
    align-items: center;
}

.story-item:nth-child(odd) {
    flex-direction: row;
}

.story-item:nth-child(even) {
    flex-direction: row-reverse;
}

.story-content {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 0 3rem;
    position: relative;
    transition: all 0.3s ease;
}

.story-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.story-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    transform: translateY(-50%);
}

.story-item:nth-child(odd) .story-content::before {
    right: -40px;
    border-left-color: white;
}

.story-item:nth-child(even) .story-content::before {
    left: -40px;
    border-right-color: white;
}

.story-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.story-year {
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.story-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.story-description {
    color: #718096;
    line-height: 1.6;
}

/* Enhanced Values Grid */
.values-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 5rem 0;
}

.value-card-enhanced {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.value-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card-enhanced:hover::before {
    transform: scaleX(1);
}

.value-card-enhanced:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.value-icon-enhanced {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    transition: all 0.3s ease;
}

.value-card-enhanced:hover .value-icon-enhanced {
    transform: rotateY(360deg) scale(1.1);
}

.value-icon-enhanced::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card-enhanced:hover .value-icon-enhanced::before {
    opacity: 0.3;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.value-description {
    color: #718096;
    line-height: 1.6;
    font-size: 1rem;
}

/* Vision Mission Cards */
.vision-mission-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 5rem 0;
}

.vision-card, .mission-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #764ba2, #f093fb);
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.vision-mission-enhanced h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.vision-mission-enhanced p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list-enhanced {
    list-style: none;
    padding: 0;
}

.feature-list-enhanced li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.feature-list-enhanced li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

/* Crisis Solution Cards */
.crisis-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
}

.crisis-card-enhanced, .solution-card-enhanced {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.crisis-card-enhanced {
    border-left: 6px solid #ef4444;
}

.solution-card-enhanced {
    border-left: 6px solid #10b981;
}

.crisis-card-enhanced:hover, .solution-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.crisis-icon-enhanced, .solution-icon-enhanced {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
}

.crisis-icon-enhanced {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.solution-icon-enhanced {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Founder Message Enhancement */
.founder-message-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 3rem;
    border-radius: 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.founder-message-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.founder-quote-enhanced {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.founder-quote-enhanced::before {
    content: '"';
    font-size: 8rem;
    position: absolute;
    top: -2rem;
    left: -2rem;
    color: rgba(255,255,255,0.2);
    font-family: serif;
}

.founder-quote-enhanced::after {
    content: '"';
    font-size: 8rem;
    position: absolute;
    bottom: -4rem;
    right: -2rem;
    color: rgba(255,255,255,0.2);
    font-family: serif;
}

.founder-quote-enhanced blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 2;
}

.founder-name-enhanced {
    margin-top: 2rem;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Name Meaning Section */
.name-meaning-enhanced {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 2rem;
    padding: 4rem;
    margin: 4rem 0;
    text-align: center;
    position: relative;
}

.name-meaning-enhanced::before {
    content: '🎵';
    font-size: 4rem;
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

.name-meaning-enhanced h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d3748;
}

.name-meaning-enhanced p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.name-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 1rem 2rem;
    border-radius: 1rem;
    display: inline-block;
    margin-top: 1rem;
}

/* Statistics Section */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 5rem 0;
}

.stat-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 500;
}

/* CTA Enhancement */
.cta-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.05"><path d="M50 10L60 40L90 40L68 58L78 88L50 70L22 88L32 58L10 40L40 40Z"/></svg>') repeat;
    background-size: 100px 100px;
    animation: floatPattern 25s linear infinite;
}

@keyframes floatPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.cta-buttons-enhanced {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-enhanced {
    padding: 1.2rem 2.5rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn-primary-enhanced {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 20px rgba(255,255,255,0.3);
}

.btn-primary-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,255,255,0.4);
}

.btn-outline-enhanced {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-enhanced:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.2rem;
    }
    
    .story-timeline::before {
        left: 2rem;
    }
    
    .story-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 4rem;
    }
    
    .story-content {
        margin: 0;
    }
    
    .story-content::before {
        display: none;
    }
    
    .story-marker {
        left: 2rem;
    }
    
    .values-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-mission-enhanced {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .crisis-solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .cta-buttons-enhanced {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .founder-message-enhanced {
        padding: 3rem 2rem;
    }
    
    .founder-quote-enhanced blockquote {
        font-size: 1.2rem;
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Accessibility Enhancements */
.keyboard-focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

.reduced-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

.no-animations * {
    animation: none !important;
    transition: none !important;
}
