


.site-header {
  position: fixed; /* important so dropdown positions relative to header */
  z-index: 2000;      /* make sure header is above feed etc */
}

.dropdown-menu {
  position: fixed;
  top: 100%;          /* directly below header */
  right: 0px;
  display: none;
  flex-direction: column;
  background: rgba(23, 23, 23);
  padding: 10px;
  border-radius: 20px;
  z-index: 1999;      /* above everything */
  min-width: 400px;
  font-size: 50px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.dropdown-menu a {
  color: white;
  text-decoration: none;
  padding: 5px 0;
}

.dropdown-menu a:hover {
  text-decoration: underline;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 20px; /* spacing between logo and filters */
}


/* Hamburger Button */
.hamburger-btn {
    display: flex;
    background: none;
    color: white;
    border: none;
    font-size: 100px;
    cursor: pointer;
    z-index: 1000;
    align-items: center;   
    justify-content: center;
    padding-bottom: 10px;      /* horizontal center (optional) */
       
}


.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 100px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    align-items: center;   
    justify-content: center;
    padding-bottom: 10px;  
}




