/* VMC Page Specific Styles */
.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact_content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact_content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.contact_content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-color);
}

.management-contact {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.management-contact p {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.management-contact i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.management-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.management-contact a:hover {
    color: var(--secondary-color);
}

.committee-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.committee-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.committee-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.member-photo {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.member-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.committee-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.member-info .role {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: auto;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .committee-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .committee-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact_content h1 {
        font-size: 2rem;
    }

    .management-contact {
        margin: 1.5rem 0;
    }

    .management-contact p {
        font-size: 1rem;
    }
}

/* Animation for member cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.committee-member {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.committee-member:nth-child(1) { animation-delay: 0.1s; }
.committee-member:nth-child(2) { animation-delay: 0.2s; }
.committee-member:nth-child(3) { animation-delay: 0.3s; }
.committee-member:nth-child(4) { animation-delay: 0.4s; }
.committee-member:nth-child(5) { animation-delay: 0.5s; }