/* --- Navbar Styles --- */
.navbar {
    display: flex;
    align-items: center;
    padding: 0 24px; /* remove top/bottom padding to simplify full-height links */
    background-color: #000000; /* black background */
    height: 60px; /* fixed navbar height */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Logo on the left */
.nav-logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffffff; /* logo text white */
    display: flex;
    align-items: center;
    height: 100%; /* match navbar height */
}

/* Container for the navigation links */
.nav-links {
    display: flex;
    gap: 20px;
    margin-left: 40px; /* space between logo and links */
    height: 100%; /* make links container full height */
    align-items: center;
}

.nav-link {
    padding: 0 16px;
    color: #ffffff; /* default text white */
    display: flex;
    align-items: center;
    height: 100%; /* make link full height of navbar */
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: #8B0000; /* dark red */
    text-shadow: 0 0 8px #8B0000; /* glow effect */
    background-color: rgba(255, 255, 255, 0.05); /* subtle hover background */
}

/* Active page */
.nav-link.active {
    font-weight: bold;
    color: #ffffff;
    background-color: #555555; /* grey rectangle covers full height */
}
