/* ====================================
   MISSION PAGE STYLES - Food2Grow
   ==================================== */

/* Page Hero */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #FFFFF0 0%, #f0f9ff 100%);
    text-align: center;
    margin-bottom: 0;
}

.hero-blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

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

.hero-blur-circle.top-right {
    top: -80px;
    right: -100px;
    height: 350px;
    width: 350px;
    background-color: #BFDBFE;
}

.hero-blur-circle.bottom-left {
    bottom: -80px;
    left: -100px;
    height: 350px;
    width: 350px;
    background-color: #BBF7D0;
}

.page-hero h1 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Content Section */
.content-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    isolation: isolate;
}

.content-grid:last-child {
    margin-bottom: 0;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text {
    position: relative;
    z-index: 5;
}

.content-text h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.content-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.content-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.content-text li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.content-text strong {
    color: var(--primary-green);
}

/* Quote Styling */
.quote {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid var(--primary-green);
    padding: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.125rem;
    color: var(--text-dark);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Image Placeholder */
.content-image {
    position: relative;
    z-index: 1;
}

.image-placeholder {
    background: linear-gradient(135deg, #e0e7ff 0%, #fae8ff 100%);
    width: 100%;
    height: 400px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: #94a3b8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

/* 3D effects voor afwisseling */
.content-grid:nth-child(odd) .image-placeholder {
    transform: perspective(1000px) rotateY(-8deg) rotateX(-2deg);
}

.content-grid:nth-child(even) .image-placeholder {
    transform: perspective(1000px) rotateY(8deg) rotateX(-2deg);
}

.image-placeholder:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.content-grid:nth-child(odd) .image-placeholder:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(-1deg) scale(1.02);
}

.content-grid:nth-child(even) .image-placeholder:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(-1deg) scale(1.02);
}

/* Shimmer effect */
.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: translateX(-100%);
}

.image-placeholder:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    to {
        transform: translateX(100%);
    }
}

/* Content Divider */
.content-divider {
    margin: 80px 0;
    border: 0;
    border-top: 2px solid var(--gray-light);
    width: 100%;
}

/* Inline Stats */
.impact-stats-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 2rem 0;
    isolation: isolate;
    position: relative;
    z-index: 15;
}

.stat-inline {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%) !important;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 20;
    pointer-events: auto;
    will-change: transform;
}

.stat-inline:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 30;
}

.stat-inline .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-inline p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid var(--primary-orange);
    padding: 3rem;
    border-radius: 16px;
    margin: 60px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.highlight-box h2 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.highlight-box p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfeff 100%);
    padding: 100px 20px;
    text-align: center;
    margin-top: 0;
}

.cta-section h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .image-placeholder,
    .content-grid:nth-child(odd) .image-placeholder,
    .content-grid:nth-child(even) .image-placeholder {
        transform: none !important;
    }
    
    .impact-stats-inline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 20px 60px;
    }
    
    .content-section {
        padding: 60px 20px;
    }
    
    .content-divider {
        margin: 60px 0;
    }
    
    .highlight-box {
        padding: 2rem;
        margin: 40px 0;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-inline .stat-number {
        font-size: 2rem;
    }
    
    .image-placeholder {
        height: 300px;
    }
}
