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

body {
    background-color: #f8f9fa;
    color: #212529;
    font-family: 'Inter', sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn {
    font-weight: 500;
}

/* Navbar: minimal customization */
.navbar {
    background-color: #ffffff;
}

/* Enhanced fix for navbar links to maintain rounded corners in ALL states */
.navbar .nav-link.rounded,
.navbar .nav-link.rounded.active,
.navbar .nav-link.rounded:hover,
.navbar .nav-link.rounded:focus,
.navbar .nav-link.rounded:active,
.navbar .nav-link.rounded:visited {
    border-radius: 0.375rem !important;
}

/* Fix specifically for the login link and active state */
.navbar .nav-item .nav-link.rounded,
.navbar .nav-item .nav-link.active.bg-primary,
.navbar .nav-item .nav-link.rounded:focus,
.navbar .nav-item .nav-link.rounded:active {
    border-radius: 0.375rem !important;
    transition: all 0.2s ease;
}

/* Prevent Bootstrap's focus styles from overriding border-radius */
.navbar .nav-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    border-radius: 0.375rem !important;
}

/* Ensure background-color doesn't override border-radius */
.navbar .nav-link.active.bg-primary {
    border-radius: 0.375rem !important;
}

/* Social icons */
.social-icon {
    width: 40px;
    height: 40px;
}

/* Hero Section: only spacing adjustment; Bootstrap handles colors and gradients */
.hero-section {
    margin-bottom: 2rem;
}

/* Card: only slight rounding */
.card {
    border-radius: 0.5rem;
    /* ...Bootstrap handles background and borders... */
}

/* Buttons: use Bootstrap defaults; custom hover for a subtle change */
.btn-primary {
    background-color: #007bff;
    border: none;
}
.btn-primary:hover {
    background-color: #0056b3;
}

/* Footer: minimal styling for a clean look */
footer {
    padding: 1rem 0;
    background-color: #ffffff;
    border-top: 1px solid #dee2e6;
}

/* Fix for footer links visibility on dark background */
footer.bg-dark .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer.bg-dark a.text-muted:hover {
    color: #fff !important;
    text-decoration: underline;
}

/* Additional utility styles can be added here if needed */
