﻿/* ===== استایل صفحه معرفی اشخاص ===== */
.ceo-profile {
    background: #f8fafc;
    min-height: 100vh;
}

/* ===== هدر صفحه ===== */
.page-header {
    background: linear-gradient(135deg, #0B4F6C 0%, #1A6D8A 100%);
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }

    .page-header::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 50%;
    }

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

    .page-title i {
        color: #F4B400;
        margin-left: 12px;
    }

.page-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

/* ===== Breadcrumb ===== */
.breadcrumb-wrapper {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #0B4F6C;
    text-decoration: none;
}

    .breadcrumb-item a:hover {
        color: #F4B400;
    }

.breadcrumb-item.active {
    color: #1E2B37;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
    color: #7a8a9e;
}

/* ===== بخش اصلی ===== */
.profile-main {
    padding: 50px 0 70px;
}

/* ===== کارت پروفایل ===== */
.profile-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s ease;
}

    .profile-card:hover {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    }

.profile-image-wrapper {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(180deg, #f0f8ff 0%, white 100%);
}

.profile-image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B4F6C, #1A6D8A);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #F4B400;
    box-shadow: 0 15px 35px rgba(11, 79, 108, 0.2);
    margin: 0 auto;
    font-size: 4.5rem;
    color: white;
}

    .profile-image-placeholder img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }

.profile-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1E2B37;
    margin-top: 1.2rem;
    margin-bottom: 0.3rem;
    text-align: center;
}

.profile-position .badge {
    background: #F4B400;
    color: #0B4F6C;
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-block;
}

/* ===== بخش اطلاعات ===== */
.info-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

    .info-section:hover {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    }

.info-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0B4F6C;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #f0f4f8;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .info-section-title i {
        color: #F4B400;
        font-size: 1.3rem;
        width: 30px;
    }

/* ===== جدول اطلاعات ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    padding: 0.8rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .info-item:hover {
        background: #f0f4f8;
    }

    .info-item .label {
        font-size: 0.8rem;
        font-weight: 600;
        color: #7a8a9e;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .info-item .value {
        font-size: 1rem;
        font-weight: 500;
        color: #1E2B37;
        margin-top: 0.2rem;
    }

        .info-item .value a {
            color: #0B4F6C;
            text-decoration: none;
        }

            .info-item .value a:hover {
                color: #F4B400;
            }

    .info-item.grid-full {
        grid-column: 1 / -1;
    }

/* ===== سوابق اجرایی ===== */
.resume-content {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    line-height: 2;
    color: #3d4f60;
    font-size: 1.05rem;
    white-space: pre-wrap;
}

    .resume-content p {
        margin: 0;
    }

/* ===== ریسپانسیو ===== */
@media (max-width: 992px) {
    .profile-image-placeholder {
        width: 170px;
        height: 170px;
        font-size: 3.5rem;
    }

    .profile-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }

    .profile-image-placeholder {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .profile-name {
        font-size: 1.3rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-section {
        padding: 1.5rem;
    }

    .profile-main {
        padding: 30px 0 50px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 30px 0 20px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .profile-image-placeholder {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }

    .profile-name {
        font-size: 1.1rem;
    }

    .info-section {
        padding: 1rem;
    }

    .resume-content {
        padding: 1rem;
        font-size: 0.95rem;
    }
}
