/* Executive Committee Page Specific Styles - Premium Redesign */

:root {
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.section-padding {
    padding: 50px 0;
}

/* Inner Banner */
.inner-banner {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.6));
    z-index: 1;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Committee Grid */
.committee-section {
    background: #fdfdfd;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.committee-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.committee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transition: 0.3s;
}

.committee-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
    border-color: var(--orange);
}

.committee-card:hover::before {
    background: var(--orange);
    height: 8px;
}

.c-icon {
    width: 100px;
    height: 100px;
    background: #f8f9fa;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    transition: 0.3s;
}

.committee-card:hover .c-icon {
    background: var(--primary);
    color: var(--white);
}

.committee-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 10px;
}

.committee-card .role {
    display: block;
    font-weight: 700;
    color: var(--orange);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.committee-card .state {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Table Section */
.governance-section {
    background: var(--primary);
    color: var(--white);
}

.gov-table-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gov-table {
    width: 100%;
    border-collapse: collapse;
}

.gov-table th {
    text-align: left;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--orange);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.gov-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

.gov-table tr:last-child td {
    border-bottom: none;
}

.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(242, 98, 34, 0.2);
    color: var(--orange);
}

/* Responsive */
@media (max-width: 992px) {
    .committee-grid { grid-template-columns: repeat(2, 1fr); }
    .banner-title { font-size: 42px; }
}

@media (max-width: 600px) {
    .committee-grid { grid-template-columns: 1fr; }
    .gov-table-container { padding: 20px; overflow-x: auto; }
    .gov-table { min-width: 500px; }
}
