/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #333;
  color: white;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 20px;
  z-index: 1000;

    overflow: visible;
}

/* LOGO */
header .logo {
  font-size: 20px;
  font-weight: bold;
}

/* HAMBURGER WRAPPER */
.hamburger-wrapper {
  position: relative;   /* anchor point for dropdown */
  display: inline-block;
}

/* HAMBURGER ICON */
.hamburger {
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

/* DROPDOWN MENU */
.hamburger-menu {
  position: absolute;
  top: 30px;       /* directly below hamburger */
  right: 0;        /* align with hamburger icon */
/*  background: #fff; */
    background: red !important;
  border: 1px solid #ccc;
  padding: 15px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 999999 !important;
}

.hamburger-menu.show {
  display: flex;
}

/* BODY OFFSET FOR FIXED HEADER */
body {
  margin: 0;
  font-family: sans-serif;
  background: #f5f5f5;
  padding-top: 80px;   /* space for fixed header */
}
