/* ===== HEADER ===== */
header {
  background: #df5110;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.nav {
  max-width: 1200px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: bold;
}

.brand img {
  height: 48px; 
  width: auto;
}

/* MENU (DESKTOP) */
.menu {
  display: flex;
  gap: 26px;
}

.menu a {
  padding: 10px 16px;
  color: white;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
  border-radius: 6px;
}

/* TOGGLE (HIDDEN BY DEFAULT) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

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

  header {
    height: 64px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    height: 62px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    display: none; /* JS will toggle this */
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #df5110;
    flex-direction: column;
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    padding: 14px;
    text-align: center;
  }
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}
