

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Lato", sans-serif;
}
.content {
	margin: auto;
	max-width: 1200px;
	width: 100%;
}


body {
	background-color: #fff;
	-webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
	overflow-x: hidden;	
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

a {
    text-decoration: none;
}



/*Navbar */
#navbar {
    background-color: #1c1a1a;
    color: #fff;
    margin: 0 auto;
    padding: 45px;
    transition: background-color 0.3s, padding 0.3s;
    z-index: 9999;
    will-change: background-color, padding;
    overflow-x: hidden;
    overflow-y: hidden;
    position: fixed;
    top: 0;
    width: 100%;
}

#navbar.sticky {
    background-color: #252831;
}

#navbar.small {
    padding: 35px;
    transition: padding 0.3s ease-in-out;
}

/* Additional CSS for Mobile Menu */
.burger-icon.close i {
    content: '\f00d'; /* Font Awesome "times" icon */
}
.logo, .nav-icons {
    flex-basis: 20%; /* Gibt eine feste Basisbreite */
    text-align: center; /* Zentriert den Inhalt */
}


.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
	padding-left: 8%;
	display: flex;
    justify-content: flex-start; /* Logo linksbündig */
}

.nav-icons {
    display: flex;
    justify-content: flex-end; 
	transform: scale(1.2);
	margin-right: 5%;
	gap: 3%;
}

.logo img {
    height: 20px; 
    width: auto;
    transform: scale(7); 
    transform-origin: center; 
    position: relative; 
    z-index: 1; 
}


.logo a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 2.0em;
}

.nav-links {
    list-style: none;
	font-size: 18px;
	display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
	margin-left: 9%; 
}


.nav-links li a:hover {
	background-color: #cfbb58;
	color: #000;
	border-radius: 20px;
	padding: 5px 10px;
}

.nav-links li:hover {
	transform: scale(1.1);
}


.nav-links li {
    margin-right: 35px;
    transition: transform 0.3s ease;
	font-size: 19px;
}



.nav-links li a {
    text-decoration: none;
    color: white;
	position: relative;
	font-family: "Lato", sans-serif;
}

.burger-icon {
	cursor: pointer;
	margin-left:38%;
	display: none;
	font-size: 32px;
	color: yellow;
}


  /*Dropdwond*/
.dropdown_menu {
    display: none;
    position: fixed; 
    top: 18%; 
	left: -500px;
    right: 2rem;
    height: 280px;
    z-index: 9999;
    width: 300px;
    background: rgba( 37, 40, 49, 1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: left 0.3s ease, height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1, 275);
	font-family: "Lato", sans-serif;
}

.dropdown_menu.open {
   display: block;
   left: 0;
   animation: slideIn 0.3s ease-out forwards;
}

.dropdown_menu li {
	transition: transform 0.3s ease;
}

.dropdown_menu  li a:hover {
	background-color: #fff;
	color: #000;
	border-radius: 20px;
	padding: 5px 10px;
}

.dropdown_menu  li:hover {
	transform: scale(1.1);
}



@keyframes slideIn {
    from {
        left: -500px;
    }
    to {
        left: 0;
    }
}



.dropdown_menu li {
	padding: 0.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

 

 /* Media Query for Mobile Devices */
 @media only screen and (max-width: 768px) {
	.nav-links, .nav-btn {
		display: none;
	}

	#navbar {
		background-color: #252831;
	}

	.nav-icons {
		position: relative;
		left: -9%;
	}

	
	.burger-icon {
		display: block; 
		position: relative;
		right: -31%;
	}
}

/*Responsive Tablet */
@media only screen and (min-width: 600px) and (max-width: 1024px) {
	.nav-links, .nav-btn {
		display: none;
	}

	.nav-icons {
		position: relative;
		left: -6%;
	}

	.burger-icon {
		display: block; 
		position: relative;
		right: -29%;
	}
}

/*Responsive Tablet Landscpae */
@media only screen and (min-width: 1025px) and (max-width: 1366px) and (orientation: landscape)  {
	.nav-links, .nav-btn {
		display: none;
	}

	.nav-icons {
		position: relative;
		left: -6%;
	}

	.burger-icon {
		display: block; 
		position: relative;
		right: -29%;
	}

}


  
  
