
/* -~-~-~-~-~-~-~-~-~-~-~-~-~



  Header

  -~-~-~-~-~-~-~-~-~-~-~-~-~ */
header {
  background-color: #2d4a52;
  padding: 20px;
  color: #fff;
  position: fixed; /* keep header when scroll*/
  width: 100%;
  z-index: 1000;
}
/* .header-content {
} */
.disclaimer-text{
  text-align:right;
  font-size: 8px;
  padding-bottom: 1em;
  font-style: italic;
}
nav#navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Logo */
.logo {
  width: 223px;
  height: 65px;
  padding-bottom:5px;
  align-content: center;
  text-align: center;
  /* display: inline-block;
  width: 260px;
  height: 60px;
  background-color: #ccc; placeholder visual
  text-align: center;
  line-height: 60px;
  font-weight: bold;
  font-size: 14px;
  color: #333; */
}
.logo img {
  max-width:100%;
}

/* Mobile menu toggle (hamburger) */
.nav-toggle {
  display: block;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background: #fff;
}

/* Menu list */
/* Initially hidden in mobile */
.menu-left {
  font-size:14px;
  display: none;
  width: 100%;
  margin-top: 10px;
  list-style: none;
  flex-direction: column;
}
.menu-left a {
  text-decoration: none;
  color:#fff;
  display:block;
  padding:5px 0;
  font-family: 'Azo_Sans_Medium', 'sans-serif';
}
.menu-left a.active {
  color: #f0ca6c;
}
.menu-left a:hover {
  text-decoration: underline; /* Add underline on hover */
}
.menu-left li {
  margin-bottom: 10px;
}

/* Show menu when nav has class 'open' */
#navigation.open .menu-left {
  display: flex;
}
/* Keep desktop as is */
@media (min-width: 768px) {
  .menu-left {
    display: flex !important;
    flex-direction: row;
    gap: 20px;
    margin-top: 0;
    width: auto;
  }
}
/* DESKTOP LAYOUT - from 768px upward */
@media (min-width: 768px) {
  .nav-toggle {
    display: none; /* Hide hamburger */
  }
  nav#navigation {
    flex-wrap: nowrap;
  }
  .menu-left {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 0;
    width: auto;
  }
  .menu-left li {
    margin: 0;
  }
}


/* my code */
.menu-left a.active {
  color: #f0ca6c;
}

/* Dropdown Base */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

/* Hidden by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* appear below parent link */
  left: 0;
  background-color: #000000;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  border-radius: 20px;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #ffffff;
  white-space: nowrap;
  font-family: 'Azo_Sans_Regular', 'sans-serif';
}

.dropdown-menu li a:hover {
  color: #f0ca6c;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
  display: block;
}

.menu-left.active {
    display: flex;
  }
 
 @media (max-width: 768px) {

  .menu-left {
    /* position: absolute; */
    top: 100%;
    left: 0;
    right: 0;
    background: #2d4a52;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    display: none;
  }

  /* Always show dropdown content on mobile */
   .dropdown-menu {
    display: block !important;
    position: static;
    box-shadow: none;
    padding-left: 1rem;
    background: transparent;
  } 

  /* Remove hover requirement */
   .dropdown:hover .dropdown-menu {
    display: block;
  }
} 

header.solid {
  background: #2d4a52;
}

header.transparent {
  background: transparent;
  box-shadow: none;
}

