/* =========================
   Reset
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   Header
========================= */
.header {
  width: 100%;
  background-color: #ffffff;
}

/* =========================
   Container
========================= */
.header-container {
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  padding: 1rem 1.5rem; /* px-6 py-4 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* =========================
   Logo
========================= */
.logo img {
  height: 69px;
  width: 183px;
}

/* =========================
   Desktop Navigation
========================= */
.nav-desktop {
  display: none;
  gap: 2rem;
  font-size: 20px;
}

.nav-desktop a {
  text-decoration: none;
  color: #374151;
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: #EA580C;
}

/* =========================
   Hamburger Button
========================= */
.menu-btn {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  color: #374151;
}

.menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================
   Mobile Navigation
========================= */
.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 20px;
  z-index: 10;
  text-align: center;
}

.nav-mobile a {
  text-decoration: none;
  color: #374151;
}

.nav-mobile a:hover {
  color: #EA580C;
}

/* Active State */
.nav-desktop a.active,
.nav-mobile a.active {
  color: #EA580C;
}

/* Utility */
.hidden {
  display: none;
}

/* =========================
   Responsive Styles
========================= */

/* Tablet / Medium screens (768px – 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-desktop {
    display: flex;
    position: static; /* FIX: no absolute centering */
  }

  .menu-btn {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

/* Large screens (1024px and up) */
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-btn {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}
