nav {
    position: fixed;
    top: 0;
    width: 100%;
	padding-left: 6.7%;
	font-family: "Marcellus", Arial, sans-serif; /* Use Marcellus for Headlines and Navigation font */
    background-color: white;
    height: 110px; /* Adjustable height for navigation */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

nav .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Horizontal menu by default */
}

nav .nav-links li {
	position: relative; /* Position relative for submenu */
    margin: 0 15px;
}

nav .nav-links li a {
    color: #4D4D4D;
    text-decoration: none;
    font-size: 22px;
	font-weight: bold;
	transition: color 0.3s ease; /* Smooth transition for color change */
}

nav .nav-links li a:hover {
    color: #068FC8; /* Change color on hover (e.g., orange) */
}

.submenu {
    display: none; /* Hidden by default */
    position: absolute; /* Position it relative to the parent li */
    top: 25px; /* Position below the parent link */
    left: -15px;
	background-color: white;
    list-style: none;
	padding-top: 10px;
	padding-left: 0px;
	margin-left: 0;
	white-space: nowrap;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
    z-index: 1000;
}

.submenu li {
    margin: 10px 0;
}

.submenu li a {
    display: block;
    padding: 8px 0px;
}

nav .nav-links li:hover .submenu {
    display: block; /* Show submenu on hover */
}

.burger {
    display: none; /* Hidden by default */
    flex-direction: column;
	cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: #068FC8;
    margin: 3px 0;
}


/* Responsive styles */

@media (max-width: 930px) {    /*    768px original   */

    nav .nav-links {  /* Style for the mobile device menu */
        display: none; /* Hide navigation links by default */
        flex-direction: column;
        position: absolute;
        top: 110px; /* Below the navigation bar */
        left: 36px;
        width: 76.5%;   /* 76.5% original */ 
        background-color: white;
		opacity: 1;
		padding-bottom: 20px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
    }

    nav .nav-links.active {
        display: flex; /* Show links when active */
    }


    .burger {
        display: flex; /* Show burger menu */
    }

}