@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

:root {
    --header-height: 3rem;
    --font-medium: 600;

    --primary-color: #5361ff;
    --white-color: #fff;
    --dark-color: #2a3b47;
    --text-color: #697477;

    --body-font: 'Montserrat', sans-serif;
    --big-font-size: 5rem;
    --normal-font-size: 1rem;

    --mb1: .5rem;
    --mb2: 1rem;
    --mb3: 1.5rem;
    --mb4: 2rem;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: var(--header-height) 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
}

h1, h2, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { text-decoration: none; color: var(--text-color); }

/* .section { padding: 3rem 0; } */

.section-title {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: var(--mb4);
    text-align: center;
}

.bd-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1024px;
    margin: 0 auto;
}

/*HEADER*/

.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 0 1rem;
}

.nav-logo { color: var(--white-color); }
.nav-link { color: var(--white-color); padding: 0.5rem; }
.nav-link:hover { color: var(--primary-color); }

/*HOME*/

.home {
    background-color: var(--primary-color);
    height: calc(100vh - var(--header-height));
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
}

.home-title {
    font-size: var(--big-font-size);
    text-align: center;
    text-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
}

/*ABOUT*/

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem; /* المسافة بين الصورة والنص */
    text-align: left;
    padding: 2rem;
}

.about-img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img img { width: 120px; }

.about-details {
    flex: 1; /* يجعل النص يشغل المساحة المتبقية */
}

.about-subtitle {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--mb1);
}

.about-text {
    margin-bottom: var(--mb4);
}


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

/* تحسين التصميم داخل كل قسم */
.about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
}

.about-img {
    margin-bottom: 1rem;
}

.about-img img {
    width: 125px;
    height: 125px;
    object-fit: cover;
    border-radius: 50%;
}

body.dark .about-social i {
    color: #fff;
}

/* التوافق مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .team-grid {
    grid-template-columns: 1fr;
    }
}