/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --background-color: #f8fafc;
    --surface-color: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --accent-color: #3b82f6;
    --border-radius: 12px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--background-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5em;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section (Home) */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('../images/06838.jpg') center/cover no-repeat;
    color: white;
    padding: 160px 0 120px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom: 4rem;
}

.hero-section h3 {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero-section h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 2rem auto 0;
    font-weight: 400;
}

/* Page Header (Inner Pages) */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Common */
.section-padding {
    padding: 5rem 0;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
    margin-top: 1rem;
    border-radius: 2px;
}

/* Track Cards */
.track-card {
    background: var(--surface-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.track-card:hover::before {
    width: 100%;
    opacity: 0.03;
    z-index: -1;
}

.track-card h5 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.track-card ul {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.track-card li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Committee List Styles */
.committee-list-container {
    max-width: 1000px;
    margin: 0 auto;
}

.committee-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #e2e8f0;
    /* Border color between items */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 3rem;
    border: 1px solid #e2e8f0;
}

.committee-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: var(--surface-color);
    transition: background-color 0.2s;
}

.committee-item:hover {
    background-color: #f8fafc;
}

.committee-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.committee-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Mobile responsive for list */
@media (max-width: 768px) {
    .committee-group {
        grid-template-columns: 1fr;
    }

    .committee-item {
        padding: 1.25rem 1.5rem;
    }
}

/* Role Badge */
.role-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #e0f2fe;
    color: var(--primary-color);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Microsoft Section */
.microsoft-section {
    background-color: white;
    margin-top: 4rem;
    border-top: 1px solid #e2e8f0;
}

/* Footer */
footer {
    background-color: var(--surface-color);
    border-top: 1px solid #e2e8f0;
    color: var(--text-secondary);
}

footer a {
    color: var(--text-primary);
    font-weight: 600;
}

footer a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Table Styles */
.custom-table thead {
    background-color: var(--primary-color);
    color: white;
}

.custom-table th {
    font-weight: 500;
    padding: 1rem;
    border: none;
}

.custom-table td {
    padding: 1rem;
    vertical-align: middle;
    color: var(--text-secondary);
}

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

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 120px 0 80px;
        clip-path: none;
    }
}