/* ─── NAVBAR ─────────────────────────────────────────────────────────────── */
.main_navbar {
  background: linear-gradient(90deg, #1a0533 0%, #2d0f4e 100%);
  padding: 14px 0;
  border-bottom: 2px solid #e91e8c33;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.nav_logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav_logo_img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav Links */
.nav_links {
  display: flex;
  align-items: center;
  column-gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav_links li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  transition:
    background 0.2s,
    color 0.2s;
}

.nav_links li a:hover {
  background: rgba(233, 30, 140, 0.2);
  color: #ffffff;
}

/* Nav CTA */
.nav_cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #f9a825 0%, #f57f17 100%);
  color: #1a0533;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(249, 168, 37, 0.35);
}

.nav_cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(249, 168, 37, 0.5);
}

/* Toggle Button */
.nav_toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  display: none;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site_footer {
  background: linear-gradient(180deg, #1a0533 0%, #0f0020 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 30px;
  margin-top: 10px;
  border-top: 2px solid #e91e8c33;
}

.footer_brand {
  margin-bottom: 24px;
}

.footer_logo_img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.9;
}

.copyright {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer_disclaimer {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

/* ─── MOBILE ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav_container {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav_logo {
    order: 1;
  }

  .nav_logo_img {
    height: 36px;
  }

  .nav_toggle {
    order: 2;
    display: block;
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  .nav_toggle.open {
    transform: rotate(90deg);
  }

  .nav_toggle.open i::before {
    content: "\f00d"; /* fa-times unicode */
  }

  .nav_cta {
    display: none;
  }

  .nav_links {
    order: 3;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    row-gap: 4px;
    padding: 0;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease;
  }

  .nav_links.open {
    max-height: 420px;
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .nav_links li {
    width: 100%;
  }

  .nav_links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .nav_links li a i {
    font-size: 0.82rem;
    opacity: 0.65;
  }
}
