/* --- ABOUT PAGE: STORYTELLING DESIGN --- */

.about-hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--nema-primary);
    background-image: linear-gradient(rgba(10, 47, 31, 0.7), rgba(10, 47, 31, 0.9)), url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 0 0 100px 100px;
}

.about-hero h1 {
    font-size: 5rem;
    color: white;
    font-weight: 800;
}

/* Narrative Section */
.story-section {
    padding: 5rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.story-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(10, 47, 31, 0.15);
}

.story-image::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--nema-accent-green);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

/* Values Grid */
.values-container {
    background: var(--nema-primary);
    padding: 5rem 0;
    border-radius: 80px;
    color: white;
}

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

.value-card {
    padding: 3rem;
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-smooth);
}

.value-card:hover {
    background: rgba(163, 255, 18, 0.1);
    transform: translateY(-10px);
}

.value-card .icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: block;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--nema-accent-green);
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

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

.team-member {
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: #f0f0f0;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

@media (max-width: 992px) {
    .story-section { padding: 3rem 0; }
    .values-container { padding: 3rem 0; border-radius: 40px; }
    .team-section { padding: 3rem 0; }
    
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-hero h1 { font-size: 3rem; }
    .values-grid { grid-template-columns: 1fr; }
}
