/* Our Story Page Specific Styles */

/* Hero Section */
.story-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #1a3a28, #0f2a20);
    color: white;
}

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

.story-hero .hero-badge {
    display: inline-block;
    background: rgba(244, 185, 66, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f4b942;
    margin-bottom: 1rem;
}

.story-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-hero .hero-title .highlight {
    color: #f4b942;
}

.story-hero .hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Vision & Mission Section */
.vm-section {
    padding: 5rem 0;
    background: white;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vision-card, .mission-card {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.vm-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(244, 185, 66, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-icon i {
    font-size: 2rem;
    color: #f4b942;
}

.vision-card h3, .mission-card h3 {
    font-size: 1.5rem;
    color: #1e3a2f;
    margin-bottom: 1rem;
}

.vision-card p, .mission-card p {
    color: #2d5a4a;
    line-height: 1.6;
}

.vision-card p {
    font-size: 1.2rem;
    font-weight: 500;
}

.vm-decoration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #f4b942, transparent);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--bg-accent);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #2d5a4a;
}

.about-tag {
    background: rgba(244, 185, 66, 0.1);
    padding: 0.8rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 1.5rem;
}

.about-tag i {
    color: #f4b942;
    margin-right: 0.5rem;
}

.pvo-badge {
    display: inline-block;
    font-size: 0.8rem;
    background: #1e3a2f;
    color: #f4b942;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.about-image .image-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(30, 58, 47, 0.9), rgba(45, 90, 74, 0.9));
    color: white;
    padding: 0.8rem;
    text-align: center;
    font-size: 0.85rem;
}

/* Crisis Section */
.crisis-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.crisis-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.crisis-icon i {
    font-size: 3rem;
    color: #f4b942;
    margin-bottom: 1rem;
}

.crisis-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e3a2f;
}

.crisis-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.crisis-stat {
    text-align: center;
}

.crisis-number {
    font-size: 2rem;
    font-weight: 800;
    color: #f4b942;
}

.crisis-label {
    font-size: 0.85rem;
    color: #2d5a4a;
}

.crisis-wrapper p {
    color: #2d5a4a;
    margin-bottom: 1rem;
}

.sdg-badge {
    background: rgba(244, 185, 66, 0.1);
    padding: 0.8rem;
    border-radius: 1rem;
    margin-top: 1rem;
}

.sdg-badge i {
    color: #f4b942;
    margin-right: 0.5rem;
}

/* Growth Section */
.growth-section {
    padding: 5rem 0;
    background: var(--bg-accent);
}

.growth-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.growth-stat-card {
    text-align: center;
    padding: 2rem;
}

.growth-stat-card .stat-icon i {
    font-size: 2rem;
    color: #f4b942;
    margin-bottom: 1rem;
}

.growth-stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3a2f;
}

.growth-stat-card .stat-label {
    font-size: 0.85rem;
    color: #2d5a4a;
    margin-top: 0.5rem;
}

.stat-trend {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    color: #f4b942;
}

.growth-note {
    padding: 1.5rem;
    text-align: center;
    background: rgba(244, 185, 66, 0.1);
}

.growth-note i {
    font-size: 2rem;
    color: #f4b942;
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #f4b942, #2d5a4a);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-marker i {
    font-size: 1.5rem;
    color: white;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
}

.timeline-year {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #f4b942;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e3a2f;
}

.timeline-content p {
    color: #2d5a4a;
    line-height: 1.6;
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
    background: var(--bg-accent);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.partner-card {
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
}

.partner-card span {
    font-size: 0.7rem;
    color: #2d5a4a;
    display: block;
}

/* Story CTA */
.story-cta {
    padding: 5rem 0;
}

.cta-wrapper {
    text-align: center;
    padding: 3rem;
}

.cta-heart {
    font-size: 3rem;
    color: #f4b942;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

@media (max-width: 768px) {
    .story-hero .hero-title {
        font-size: 2rem;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .growth-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .timeline-marker i {
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .crisis-stats {
        flex-direction: column;
        gap: 1rem;
    }
}