/* 🌞 الوضع العادي */
.profile-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.profile-container {
    background: #EAE3D8;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.profile-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.profile-info p {
    font-size: 16px;
    margin: 5px 0;
}

.profile-info i {
    margin-right: 8px;
    color: #2D2D2D;
}

/* 🌚 الوضع الداكن */
body.dark-theme .profile-container {
    background: #420D32;
    color: #fff;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.1);
}

body.dark-theme .profile-info h2,
body.dark-theme .profile-info p,
body.dark-theme .profile-info i {
    color: #fff;
}
