/* Navbar Container */
.navbar {
background-color: #001f3f;;
color: white;
padding: 0.5rem 1rem;
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
box-sizing: border-box;
}

/* Flexbox for single row layout */
.navbar-container {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: nowrap;
}

/* Logo and Title */
.navbar-left {
display: flex;
align-items: center;
gap: 10px;
}

.navbar-logo-link {
display: flex;
align-items: center;
justify-content: center;
height: 48px;
width: 48px;
overflow: hidden;
border-radius: 50%;
}

.navbar-logo {
width: 100%;
height: 100%;
object-fit: cover;
}

.navbar-title {
font-size: 1.3rem;
font-weight: bold;
white-space: nowrap;
color: white;
margin-right: 20px;
}

/* Navigation Links */
.navbar-links {
display: flex;
justify-content: flex-end;
align-items: center;
gap: 18px;
list-style: none;
margin: 0;
padding: 0;
}

.navbar-links a {
color: white;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}

.navbar-links a:hover {
color: #ffd700;
}

/* Hamburger Button (hidden by default) */
.navbar-toggle {
display: none;
font-size: 1.8rem;
background: none;
color: white;
border: none;
cursor: pointer;
}

/* ---------- Mobile View ---------- */
@media (max-width: 768px) {
.navbar-container {
flex-wrap: wrap;
}

.navbar-links {
display: none;
flex-direction: column;
align-items: flex-start;
width: 100%;
background-color: #111;
padding: 0.5rem 0;
}

.navbar-links.active {
display: flex;
}

.navbar-toggle {
display: block;
}

.navbar-title {
font-size: 1.1rem;
}
}
