/*
.header {
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgb(239, 235, 231);
}
*/

/*
.header {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgb(239, 235, 231);
  padding: 0 20px;
}
*/


a {
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/*
.header-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-wrap: 0;

}


.header-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
*/

.header {
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgb(239, 235, 231);
  padding: 10px 0;
}
.header-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-right: 20px;
}


.header-1 h1 {

  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-weight: 500;
  font-size: 1.2rem;

  letter-spacing: 1px;
}

/*
.menu-items {
  display: flex;
  width: 500px;
  margin-right: 20px;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
*/
.menu-items {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}


div img {
  height: 40px;
}

.header-link:hover {
  text-decoration: underline;
}

/*
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 23px;
}
*/

.hamburger {
  display: none;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;

  position: absolute;
  top: 30px;
  right: 20px;
}


.hamburger span {
  width: 23px;
  height: 2px;
  background: #555;
  border-radius: 3px;
}


.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgb(239, 235, 231);
  position: fixed;
  top: 70px; /* below header */
  right: 0;
  width: 100px;
  padding: 20px;
  z-index: 99;
}


.mobile-menu a {
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-weight: 500;
  padding: 12px 0;
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  text-align: right;
}


/*
@media (max-width: 768px) {

  .menu-items {
    display: none; 
  }

  .hamburger {
    display: flex; 
    
  }

  .mobile-menu.show {
    display: flex; 
    justify-content: flex-end;
  }

  .left-side h1 {
    font-size: 1rem; 
  }
}
*/

@media (max-width: 768px) {

  /* Hide desktop menu */
  .menu-items {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Keep title centered */
  .header-1 {
    align-items: center;
    text-align: center;
  }

  /* Mobile dropdown menu */
  .mobile-menu.show {
    display: flex;
    flex-direction: column;
    background: rgb(239, 235, 231);
    position: fixed;
    top: 70px;
    right: 0;
    width: 150px;
    padding: 20px;
    z-index: 99;
  }
}

