/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
	background-color : rgba(0, 0, 0, 0.47);
border-top-left-radius : 5px;
border-top-right-radius : 5px;
border-bottom-right-radius : 5px;
border-bottom-left-radius : 5px;
border-top-width : 1px;
border-right-width : 1px;
border-bottom-width : 1px;
border-left-width : 1px;
border-top-style : solid;
border-right-style : solid;
border-bottom-style : solid;
border-left-style : solid;
border-top-color : rgb(77, 77, 77);
border-right-color : rgb(77, 77, 77);
border-bottom-color : rgb(77, 77, 77);
border-left-color : rgb(77, 77, 77);
letter-spacing : 2px;

}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 100px; /* Space between menu items */
}

.nav-item {
    display: flex;
    align-items: center;
    color: white; /* Text color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #FFD700; /* Highlight color on hover */
}

.nav-item.active {
    color: #ffffff; /* Active item color */
}

.nav-item a {
    color: inherit; /* Inherit parent color */
    text-decoration: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.fa-solid, .fas {
    margin-right: 5px; /* Space between icon and text */
}
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
}