/* Accreditation Page Styles */

/* Section Header - Matching discipline.php design */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #DC2626;
}

.accreditation-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.accreditation-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.accreditation-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.accreditation-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.accreditation-logo {
    text-align: center;
    min-width: 200px;
}

.anab-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
}

.accreditation-logo-text {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
    max-width: 200px;
}

.accreditation-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.accreditation-info p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

.document-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #000;
    border: 1px solid #000;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.document-link:hover {
    background: #333;
    border-color: #333;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.document-link:hover i {
    transform: translateY(2px);
    transition: transform 0.3s ease;
}

.document-link i {
    color: #fff;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-section {
    margin-top: 3rem;
}

.contact-section.red-theme {
    background: linear-gradient(135deg, #c41e3a 0%, #8f1228 100%);
    color: white;
}

.contact-section .info-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.contact-section.red-theme .info-card {
    background: transparent;
    border: none;
    padding: 2rem;
}

.contact-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-section.red-theme h3 {
    color: white;
}

.contact-section p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-section.red-theme p {
    color: white;
}

.email-link, .phone-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-section.red-theme .email-link,
.contact-section.red-theme .phone-link {
    color: white;
}

.contact-section.red-theme .email-link:hover,
.contact-section.red-theme .phone-link:hover {
    color: #fff;
    text-decoration: underline;
}

.email-link:hover, .phone-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .accreditation-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .accreditation-logo {
        min-width: auto;
    }
    
    .accreditation-info {
        text-align: center;
    }

    .document-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .accreditation-item {
        padding: 1.5rem;
    }
    
}
