/* custom-menu-styles.css */
@font-face {
  font-family: 'Lucida Sans Unicode';
  src: url('fonts/lucida_sans_unicode.ttf');
}

/* Change font size and color of menu items */
.menu-item a {
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
}

.menu-item {
    margin-bottom: 80px;
    border-left: 2px solid transparent; /* Start with a transparent border */
    border-color: transparent; /* Start with a transparent border color */
}

.menu-item:hover{
    border-left: 2px solid #f58220; /* Change the border color on hover */
    border-color: #f58220; /* Change the border color on hover */
    padding-bottom: 40px;
    margin-bottom: 0px;
    color: #f58220;
}

.menu-item a:hover {
    color: #f58220;
}

.current-menu-item > a {
    color: #f58220; /* Red color for the current item */
}

/* Make the menu display horizontally */
.menu {
    list-style: none; /* Remove list-style markers */
    padding: 0; /* Remove padding */
}

.menu-item {
	padding: 10px 20px;
	display: inline-block; /* Display menu items horizontally */
	margin-right: 10px; /* Add spacing between menu items (optional) */
	border-left: 2px solid;
	border-color: #f58220;
	margin-bottom: 100px;
}

#menu-header-menu {
	margin: 0;
	border-top-left-radius: 30px; border-top-right-radius: 30px;
	background-color: #000000;
}
