/* KSU Custom Theme Overrides */
:root {
    --primary-color: #004d00; /* KSU Green */
    --secondary-color: #FFD700; /* KSU Gold */
}

body {
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #003300;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Navbar */
header, .main-menu-area {
    background-color: #004d00 !important;
}

.main-menu ul li a {
    color: #ffffff !important;
}

.main-menu ul li a:hover {
    color: #FFD700 !important;
}

/* Footer */
footer {
    background-color: #004d00 !important;
    border-top: 4px solid #FFD700;
}