/* Header Wrapper */
.site-header {
  max-width: 1200px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

/* Line 1: Top Banner */
.site-header .top-banner {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1px 0; /* Reduced height by ~40% from original 8px */
  font-size: 0.5em;
}

/* Line 2: Logo and Facebook */
.site-header .logo-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
}

.site-header .logo {
  height: 80px;
}

.site-header .facebook-icon img {
  height: 40px;
}

/* Line 3: Navigation Menu */

.nav-header {
  background-color: #000;
  padding: 0.5em 1em;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Hamburger styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    margin: 0 auto;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    text-align: center;
    padding: 1em 0;
  }

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

  .nav-container {
    flex-direction: column;
  }
}

