/* About Pages Styling */

.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d1829 100%);
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.committee-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    opacity: 0.95;
}

/* Committee Page Sections */
.committee-page .committee-content {
    padding: 60px 0;
}

.committee-section {
    margin-bottom: 60px;
}

.committee-section h2 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--color-accent);
    display: inline-block;
}

/* Committee Chairs */
.committee-chairs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.committee-member.chair {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a5f 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.committee-member.chair:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.committee-member .member-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.committee-member.chair .member-role {
    color: #ffd700;
}

.committee-member .member-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.committee-member .member-position {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.4;
}

/* Committee Members List */
.committee-members-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.committee-members-list .committee-member {
    background: white;
    padding: 1.5rem;
    border: 1px solid var(--color-gray-soft);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.committee-members-list .committee-member:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(26, 43, 74, 0.1);
}

.committee-members-list .member-name {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.committee-members-list .member-position {
    color: var(--color-text-muted);
}

/* About Landing Page */
.about-landing {
    padding: 60px 0;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-intro h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* About Navigation Grid */
.about-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-nav-card {
    background: white;
    padding: 2rem;
    border: 2px solid var(--color-gray-soft);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.about-nav-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(26, 43, 74, 0.15);
}

.about-nav-card h3 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.about-nav-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.about-nav-card .card-arrow {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.about-nav-card:hover .card-arrow {
    transform: translateX(5px);
}

/* Branding Page */
.branding-colors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.color-swatch {
    text-align: center;
}

.color-box {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.color-name {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.color-code {
    font-family: monospace;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .committee-chairs {
        grid-template-columns: 1fr;
    }

    .committee-members-list {
        grid-template-columns: 1fr;
    }

    .about-nav-grid {
        grid-template-columns: 1fr;
    }
}