/* =========================
   MYSTERY FREEDOM
   HEADER CSS (UPDATED BRAND)
   ========================= */


/* =========================
   HEADER WRAPPER
   ========================= */

.site-header {
  width: 100%;
  padding: 26px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  border-bottom: 1px solid #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 999;
}


/* =========================
   BRAND (LOGO + TEXT)
   ========================= */

.site-brand {
  display: flex;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.site-brand-text {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}


/* =========================
   NAVIGATION
   ========================= */

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s ease;
}


/* HOVER EFFECT */
.site-nav a:hover {
  opacity: 0.6;
}


/* UNDERLINE ANIMATION */
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {

  .site-header {
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    text-align: center;
  }

  .site-brand {
    justify-content: center;
  }

  .site-logo-img {
    height: 36px;
  }

  .site-brand-text {
    font-size: 24px;
    letter-spacing: 0px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .site-nav a {
    font-size: 12px;
    letter-spacing: 2px;
  }
}