/* zhssrh-styles.css */
/* Custom styles for Zo Humanities and Social Sciences Research Hub */
/* All styles prefixed with zhssrh- to avoid conflicts */

.zhssrh-container {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.zhssrh-header {
    background: linear-gradient(135deg, #1a3a5f 0%, #2c5a8a 100%);
    color: white;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.zhssrh-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.zhssrh-title {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.zhssrh-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.zhssrh-main {
    margin-bottom: 60px;
}

.zhssrh-section {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zhssrh-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.zhssrh-section-title {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a3a5f;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    position: relative;
}

.zhssrh-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #2c5a8a;
}

.zhssrh-content {
    font-size: 1.1rem;
    line-height: 1.5;
}

.zhssrh-platforms {

    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0;
}

@media (min-width: 768px) {
    .zhssrh-platforms {
        grid-template-columns: 1fr 1fr;
    }
}

.zhssrh-platform {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5a8a;
    transition: all 0.3s ease;
}

.zhssrh-platform:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.zhssrh-platform-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a3a5f;
    margin-bottom: 10px;
}

.zhssrh-structure-footer {
    font-style: italic;
    margin-top: 20px;
    padding: 12px;
    background: #f1f8ff;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.zhssrh-objectives-list {
    list-style: none;
    padding-left: 0;
}

.zhssrh-objectives-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.zhssrh-objectives-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #2c5a8a;
    font-weight: bold;
    font-size: 1.2rem;
}

.zhssrh-team-category {
    margin-bottom: 20px;
}

.zhssrh-team-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a3a5f;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e9ecef;
}

.zhssrh-team-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

@media (min-width: 576px) {
    .zhssrh-team-list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

.zhssrh-team-list li {
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.zhssrh-team-list li:hover {
    background: #e9ecef;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.zhssrh-endeavours-list {
    list-style: none;
    padding-left: 0;
}

.zhssrh-endeavours-list li {
    position: relative;
    padding: 15px 15px 15px 60px;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.zhssrh-endeavours-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.zhssrh-endeavours-list li::before {
    content: attr(data-number);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: #2c5a8a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.zhssrh-endeavours-list li:nth-child(1)::before {
    content: '1';
}

.zhssrh-endeavours-list li:nth-child(2)::before {
    content: '2';
}

.zhssrh-endeavours-list li:nth-child(3)::before {
    content: '3';
}

.zhssrh-involvement-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .zhssrh-involvement-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

.zhssrh-involvement-option {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.zhssrh-involvement-option:hover {
    background: white;
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #2c5a8a;
}

.zhssrh-involvement-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a3a5f;
    margin-bottom: 15px;
}

.zhssrh-footer {
    background: #1a3a5f;
    color: white;
    padding: 30px 0;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

.zhssrh-footer-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .zhssrh-title {
        font-size: 2rem;
    }
    
    .zhssrh-section {
        padding: 25px 20px;
    }
    
    .zhssrh-section-title {
        font-size: 1.7rem;
    }
}

/* Animation for page load */
@keyframes zhssrh-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zhssrh-section {
    animation: zhssrh-fadeIn 0.6s ease forwards;
}

.zhssrh-section:nth-child(1) { animation-delay: 0.1s; }
.zhssrh-section:nth-child(2) { animation-delay: 0.2s; }
.zhssrh-section:nth-child(3) { animation-delay: 0.3s; }
.zhssrh-section:nth-child(4) { animation-delay: 0.4s; }
.zhssrh-section:nth-child(5) { animation-delay: 0.5s; }
.zhssrh-section:nth-child(6) { animation-delay: 0.6s; }