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



  Header

  -~-~-~-~-~-~-~-~-~-~-~-~-~ */
header {
  background-color: #223842;
  top: 0;
  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;
}

/* When menu is open */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Smooth transition */
.nav-toggle span {
  transition: all 0.3s ease;
}


/* 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';
  white-space: nowrap;
}
.menu-left a.active {
  color: #f0ca6c;
}
.menu-left a:hover {
  /* text-decoration: underline; Add underline on hover */
  color: #f0ca6c;
}
.menu-left li {
  margin-bottom: 10px;
  width: 100%;
}

/* 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: default;
}
.dropdown-toggle svg {
  margin-left: 10px;
}
.dropdown-toggle:hover svg g,
.dropdown-toggle.active svg g {
  stroke: #f0ca6c;
}

/* Hidden by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* appear below parent link */
  left: 0;
  background-color: #223842;
  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: 767px) {

  @media (max-width: 767px) {

  /* Main mobile menu panel */
  .menu-left {
    position: fixed;
    top: 100px;               /* leave space for header */
    left: 0;
    right: 0;
    height: calc(100vh - 100px); /* full height minus header */
    overflow-y: auto;        /* scroll inside */
    background: #223842;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    display: none;
    z-index: 9999;
  }

  .menu-left.active {
    display: flex;
  }

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

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Disable page scroll when menu is open */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* Disable page scroll when menu is open */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

} 

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

