﻿:root {
    --primary-teal: #005f69;
    --secondary-teal: #005f69;
    --accent-orange: #f26f33;
    --light-gray: #f8f9fa;
    --dark-gray: rgb(51,51,51);
}

.president-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

    .president-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-teal), var(--accent-orange));
    }

.president-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid var(--primary-teal);
    margin: 0 auto 1.5rem;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.president-title {
    color: var(--primary-teal);
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.president-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.president-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.president-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
}

    .president-info-item i {
        color: var(--primary-teal);
        width: 20px;
        text-align: center;
    }

.members-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.section-title {
    color: var(--primary-teal);
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-teal), var(--accent-orange));
    }

.member-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

    .member-card:hover {
        border-color: var(--primary-teal);
        box-shadow: 0 5px 15px rgba(30, 107, 107, 0.1);
        transform: translateY(-2px);
    }

.member-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.member-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.member-role {
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.member-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

    .info-item i {
        color: var(--primary-teal);
        width: 18px;
        text-align: center;
    }

    .info-item strong {
        color: #333;
    }

.member-index {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-orange);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .president-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .member-info {
        grid-template-columns: 1fr;
    }

    .president-avatar {
        width: 120px;
        height: 120px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .president-title {
        font-size: 16px;
    }
    .president-name {
        font-size: 16px;
    }

    .president-info-item span{
        font-size: 14px;
    }

    .member-name {
        font-size: 16px;
    }

    .member-role {
        font-size: 14px;
    }
    .info-item {
        font-size: 14px;
    }
}

.stats-banner {
    background: linear-gradient(135deg, var(--secondary-teal), var(--primary-teal));
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.stats-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
