﻿/* Hero Section */
.hero-section-about {
    position: relative;
    height: 60vh;
    background-image: url('/img/hero-background.png'); /* یک تصویر پس‌زمینه زیبا و مرتبط */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* ایجاد افکت Parallax */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.7); /* یک لایه تیره برای خوانایی متن */
}

.hero-content {
    position: relative;
    z-index: 2;
}

    .hero-content h1 {
        font-family: var(--title-font);
        font-size: 4rem;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    }

/* استایل عمومی بخش‌ها */
.mission-section, .team-section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--title-font);
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    /* خط زیر عنوان‌ها */
    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 4px;
        background-color: var(--accent-gold);
    }

.text-center.section-title::after {
    right: 50%;
    transform: translateX(50%);
}

.mission-section .lead {
    color: var(--light-slate);
    line-height: 1.8;
}

/* Team Section */
.team-card {
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.team-member-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-card-body {
    padding: 25px;
}

.team-member-name {
    font-family: var(--title-font);
    color: var(--dark-blue);
    font-size: 1.5rem;
}

.team-member-role {
    color: var(--accent-gold);
    font-weight: 500;
}

.team-social-links {
    margin-top: 15px;
}

    .team-social-links a {
        color: var(--light-slate);
        font-size: 1.2rem;
        margin: 0 10px;
        transition: color 0.3s ease;
    }

        .team-social-links a:hover {
            color: var(--accent-gold);
        }
