.navbar {
  background-color: #333;
  color: white;
   position: sticky;
   top: 0;
   z-index: 100;
}

.navbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 1em;
}

.logo a {
  color: white;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
}

.menu-toggle {
  font-size: 1.8em;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none;
}

.nav-links {
  display: flex;
  gap: 1em;
  position: relative;
}

.nav-links a,
  .dropdown-toggle {
      color: white;
      text-decoration: none;
      padding: 0.5em;
      transition: background 0.3s;
      display: flex;
      align-items: center;
    }

.nav-links a:hover,
    .nav-links a.active,
    .dropdown-toggle:hover {
      background-color: #444;
      border-radius: 4px;
    }
    
/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: " ▾";
    font-size: 0.8em;
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #222;
    min-width: 150px;
    z-index: 99;
}

.dropdown-content a {
    padding: 0.5em 1em;
    color: white;
    text-decoration: none;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
	display: block;
  }

  .nav-links {
	display: none;
	flex-direction: column;
	background-color: #222;
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0.5em 1em;
  }

  .nav-links.show {
	display: flex;
  }
  
  .dropdown-content {
    display: flex !important;
    position: static;
    background-color: #333;
    padding-left: 1em;
  }

  .dropdown:hover .dropdown-content {
    display: flex !important;
  }
  
  .menu-toggle.x-icon::before {
	content: "✖";
  }

  .menu-toggle.hamburger::before {
	content: "☰";
  }
}

/* DESKTOP */
@media (min-width: 769px) {
  .navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 1em;
  }

  .navbar-header {
	flex: 1;
  }

  .nav-links {
    display: flex !important;
    justify-content: flex-end;
    gap: 1.5em;
  }

  .dropdown-content {
    display: none;
  }

  .dropdown:hover .dropdown-content {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #222;
  }

  .menu-toggle {
	display: none !important;
  }
   
}

.cover {
  width: 100%;
  height: 400px;
  background-size: cover;
  border: 0px;
  background-position: 50% 43%;
}

h1{
	text-align: center;
	font-size: 3em;
	
}

h2{
	text-align: center;
	font-size: 2em;
}

.duale{
	background-color:#333;
	 display: inline-block;
	 width:100%;
	 color:white;
}
