/* ==========================
   HEADER (GLOBAL)
========================== */
.header {
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.logo img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

/* Hidden on desktop */
.menu-icons,
.menu-close-box {
  display: none;
}

.menu-open,
.menu-close {
  font-size: 22px;
  cursor: pointer;
  transition: 0.2s ease;
}

.site-header {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.nav-links-box {
  display: flex;
  flex-direction: row;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  padding: 12px 22px;
  color: #111;
  font-size: 16px;
  border-radius: 8px;
  transition: 0.2s ease;
}

.nav-item > a:hover {
  color: #ff8c00;
}

/* ------------------------------
   DESKTOP DROPDOWN (hover)
------------------------------ */
.dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  flex-direction: column;
  background: #fff;
  min-width: 180px;
  border-radius: 6px;
  padding: 10px 0;
  z-index: 10;
}

.dropdown a {
  padding: 10px 20px;
  color: #111;
  font-size: 15px;
  transition: 0.2s ease;
}

.dropdown a:hover {
  background: #f8f8f8;
  color: #ff8c00;
}

@media (min-width:1081px) {
  .nav-item:hover .dropdown {
    display: flex;
  }
}

/* ==========================
   MOBILE / TABLET
========================== */
@media (max-width:1080px) {

  .menu-icons {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 15px;
  }

  .menu-open {
    font-size: 20px;
    padding: 12px 22px;
    background: #111;
    color: #fff;
    border-radius: 8px;
  }

  /* Fullscreen Menu */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: #fff;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
    padding: 25px;
    overflow-y: auto;
  }

  .site-header.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-close-box {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 10px 10px 0 0;
  }

  .menu-close {
    font-size: 32px;
  }

  .nav-links-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    gap: 5px;
    text-align: center;
  }
.nav-item {
  padding: 18px 0;
}
  .nav-item > a {
    width: 100%;
    padding: 16px 0;
    font-size: 20px;
  }

  /* ------------------------------
     MOBILE DROPDOWN ACCORDION
     —— pushes content below
  ------------------------------ */
  .dropdown {
    display: none;       /* hidden by default */
    position: relative;  /* FIXED: now in normal flow */
    width: 100%;
    flex-direction: column;
    border-left: 3px solid #ddd;
    margin-top: 5px;
  }

  .dropdown.open {
    display: flex;       /* show and push down */
  }

  .dropdown a {
    padding: 12px 20px;
    font-size: 17px;
    text-align: left;
  }

  .dropdown a:last-child {
    border-bottom: none;
  }
}
  