/* General Body and Typography */
body {
    font-family: 'Roboto', sans-serif;
    padding-top: 56px; /* Adjust for fixed navbar */
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(45deg, rgba(26, 26, 46, 0.8), rgba(60, 29, 92, 0.8)), url('https://www.nasa.gov/wp-content/uploads/2023/04/quantum-1-1.jpg') no-repeat center center;
    background-size: cover;
    height: 70vh;
    color: white;
}

.hero-section h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-section p.lead {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Section Headings */
h2 {
    color: #343a40;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #6f42c1;
    display: inline-block;
}

/* Areas of Interest Icons */
#topics ul {
    padding-left: 0;
}

#topics li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

#topics .bi {
    color: #6f42c1;
    font-size: 1.5rem;
    margin-right: 10px;
}


/* Submissions Section Cards */
#submissions .card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

#submissions .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

#submissions .card-title {
    color: #6f42c1;
}

/* Schedule Table */
#schedule .table thead {
    background-color: #495057;
    color: #ffffff;
}
#schedule .table-primary {
    background-color: #e2d9f3 !important;
    color: #343a40;
}


/* Committees Styling */
#committees h3 {
    color: #495057;
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dee2e6;
}

#committees .row > div {
    margin-bottom: 0.5rem;
}


/* Footer */
footer {
    background-color: #343a40 !important;
}

footer a {
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Custom Horizontal Rule */
hr {
    border-top: 1px solid #dee2e6;
}