/* Deanship Page Styles */

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 60px 0;
    margin-bottom: 50px;
    color: white;
    text-align: center;
    border-radius: 0 0 20px 20px;
}
.page-header h1 { font-size: 2.5rem; margin-bottom: 10px; font-weight: 700; }

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}
.breadcrumb a { color: white; text-decoration: none; }
.breadcrumb a:hover { color: var(--warning); }

/* ============================================
   Layout
   ============================================ */
.deanship-section { padding-bottom: 80px; }

.deanship-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* صف العميد */
.dean-row {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* فاصل */
.dean-divider {
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
    margin-bottom: 30px;
}

/* صف المعاونين */
.assistants-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
    width: 100%;
}

/* ============================================
   الكرت - نفس القياسات للجميع
   ============================================ */
.dean-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 2px solid var(--secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 330px;

    /* الأنيميشن */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Hover يعمل على الكل */
.dean-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

/* ============================================
   الصورة الدائرية
   ============================================ */
.dean-image-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 4px solid var(--secondary);
    padding: 3px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    flex-shrink: 0;
}
.dean-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.dean-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color-light);
    font-size: 4rem;
}

/* ============================================
   محتوى الكرت
   ============================================ */
.dean-info { width: 100%; }
.dean-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.4;
}
.dean-position-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .page-header { padding: 40px 0; }
    .page-header h1 { font-size: 2rem; }
    .dean-card { width: 270px; padding: 22px 14px; }
    .dean-image-container { width: 150px; height: 150px; }
    .dean-info h3 { font-size: 1rem; }
    .assistants-row { gap: 18px; }
}

@media (max-width: 576px) {
    .page-header { padding: 30px 0; }
    .page-header h1 { font-size: 1.6rem; }
    .deanship-section { padding-bottom: 50px; }
    .dean-card { width: 175px; padding: 16px 10px; }
    .dean-image-container { width: 120px; height: 120px; }
    .dean-info h3 { font-size: 0.88rem; }
    .dean-position-badge { padding: 5px 10px; font-size: 0.75rem; }
    .assistants-row { gap: 12px; }
    .breadcrumb { font-size: 0.8rem; }
}
