/* navbar.css */
body {
    padding-top: 70px; /* Adjust this value based on your Navbar's height */
}

.navbar {
    background-color: rgba(36, 36, 36, 0.8); /* Dark background with transparency */
    padding: 10px 15px; /* Adjust padding to control the height of the navbar */
    backdrop-filter: blur(10px); /* Adds a blur effect for a frosted glass look */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow for depth */
}

.navbar-brand {
    font-weight: bold;
    color: #ffffff !important; /* White color for the brand name */
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navbar-nav .nav-link {
    font-size: 16px;
    padding: 10px 15px;
    color: #f8f8f2 !important; /* Light color for nav links */
    transition: background-color 0.3s, color 0.3s;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(233, 236, 239, 0.3); /* Slight background color change on hover with transparency */
    border-radius: 5px;
    color: #ffffff !important;
}

.navbar-nav .nav-link.active {
    background-color: rgba(233, 236, 239, 0.3); /* Active state with transparency */
    border-radius: 5px;
    color: #ffffff !important; /* Ensure active link is clearly visible */
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1); /* Adjust the border color for the toggle button */
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"%3E%3Cpath stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"/%3E%3C/svg%3E');
}

.container {
    margin-top: 20px; /* Additional spacing if needed below the navbar */
}
