

:root {
  --primary-blue: #2563eb;
  --dark-navy: #0f172a;
  --text-gray: #4b5563;
  --border-light: #f1f5f9;
}



/* ========================
   2. HEADER & DESKTOP NAV
   ======================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: black;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--dark-navy);
}

.nav-btn {
  background: var(--primary-blue);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

/* ========================
   3. STANDARD HAMBURGER
   ======================== */
.mobile-menu-toggle {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Hamburger to X Animation */
.mobile-menu-toggle.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen */
    width: 280px; /* Standard drawer width */
    /* height: 1vh; */
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px;
    gap: 32px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transition: right 0.4s ease-in-out;
    z-index: 1050;
  }

  .nav-links.active {
    right: 0; /* Slide into view */
  }

  .nav-links a {
    font-size: 20px;
    font-weight: 600;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }
}