/* Navbar Container */
.navbar {
    display: flex;
    justify-content: center; /* Center the content inside the navbar */
    align-items: center; /* Align elements vertically */
    background-color: #2b2b2b;
    padding: 10px 20px;
    border-bottom: 1px solid #444;
    position: relative;
}

/* Inner Container for Controlled Width */
.navbar-container {
    display: flex;
    justify-content: space-between; /* Spread the left and right sections */
    align-items: center;
    width: 100%;
    max-width: 1600px; /* Restrict to 1600px width */
    margin: 0 auto;
}

/* Left and Right Sections */
.navbar-left, .navbar-right {
    display: flex;
    gap: 20px; /* Space between links */
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-left a, .navbar-right a {
    text-decoration: none;
    color: #f4f4f4; /* Light grey */
    font-family: "Raleway", sans-serif;
    font-size: 0.9em; /* Adjust for readability */
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar-left a:hover, .navbar-right a:hover {
    color: #ffd700; /* Gold accent on hover */
}

/* Centered Logo */
.navbar-logo {
    flex-shrink: 0; /* Prevent the logo from shrinking */
    margin: 0 20px; /* Add spacing between the left and right sections */
}

.navbar-logo img {
    max-height: 50px; /* Adjust as needed */
    width: auto;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column; /* Stack everything vertically */
        align-items: center;
        gap: 10px; /* Add spacing between sections */
    }

    .navbar-left, .navbar-right {
        flex-direction: column; /* Stack links vertically */
        align-items: center;
        gap: 5px; /* Reduce spacing between links */
    }

    .navbar-logo {
        margin: 10px 0; /* Add spacing around the logo */
        margin-left: 20px;
        margin-right: 20px;
    }

    .navbar-logo img {
        max-height: 40px; /* Slightly smaller logo for mobile */
    }

    .navbar-left a, .navbar-right a {
        font-size: 0.8em; /* Reduce font size for better fit */
    }
}
