/* Cleaned & Consolidated style.css - January 2026 */

/* Base */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
}

/* Header */
header {
    background: #003087;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
}



/* Navigation */
nav {
    background: #f4f4f4;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

nav a.nav-link {
    margin: 0 1.2rem;
    text-decoration: none;
    color: #003087;
    font-weight: bold;
    transition: color 0.2s ease;
}

nav a.nav-link:hover {
    color: #d32f2f;
}

nav a.nav-link.active {
    color: #d32f2f;
    pointer-events: none;
    cursor: default;
    border-bottom: 3px solid #d32f2f;
    padding-bottom: 4px;
}



/* Other elements */
ul {
    list-style-type: disc;
    margin-left: 1.8rem;
    margin-bottom: 1.5rem;
}

section {
    margin-bottom: 2.5rem;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: #f4f4f4;
    margin-top: 3rem;
    color: #555;
}

/* FIX: Force white text in header – this selector is more specific */
header h1,
header p {
    color: white !important;
}

header h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6); /* makes it pop even more */
}
/* Mobile */
@media (max-width: 768px) {
    nav a.nav-link {
        display: block;
        margin: 0.8rem 0;
    }
}