/* AnnuMakeover – Navbar */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500;600&display=swap');

/* ── Logo Mark ── */
.brand-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #c9184a 0%, #d4a853 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201,24,74,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(15, 10, 12, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 12px 5%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.32);
}
.navbar.scrolled .brand-logo-mark {
  transform: scale(0.92);
}

/* ── Brand ── */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-brand:hover .brand-logo-mark {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 6px 18px rgba(201,24,74,0.48);
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.3px;
}
.brand-name em {
  font-style: normal;
  color: #f0d080;
}
.brand-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1;
}

/* ── Desktop Nav Links ── */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 9999px;
  color: rgba(255,255,255,0.72);
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.09); }
.nav-link.active { color: #fff; background: rgba(201,24,74,0.25); }

/* ── Desktop CTA ── */
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-admin-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 9999px;
  transition: all 0.25s ease;
  border: 1px solid rgba(255,255,255,0.10);
}
.nav-admin-link:hover {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.25);
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 8, 0.97);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  z-index: 590;
  display: flex;            /* always flex – animated via opacity/visibility */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 90px 28px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s;
  pointer-events: none;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  text-decoration: none;
}
.mobile-menu-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, #c9184a, #d4a853);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
}
.mobile-menu-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.mobile-menu-brand-name em { font-style: normal; color: #f0d080; }
.mobile-nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 13px 36px;
  border-radius: 9999px;
  transition: all 0.22s ease;
  width: 100%;
  max-width: 280px;
  text-align: center;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { background: rgba(255,255,255,0.07); color: #fff; }
.mobile-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 10px 0;
}
.mobile-wa-btn {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  background: #25D366;
  border-radius: 9999px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  width: 100%;
  max-width: 280px;
  transition: all 0.25s ease;
}
.mobile-wa-btn:hover { background: #1da851; transform: translateY(-2px); }
.mobile-admin-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  margin-top: 14px;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9999px;
  transition: all 0.22s ease;
}
.mobile-admin-link:hover { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.2); }

/* ── Breakpoints ── */
@media (max-width: 900px) {
  .navbar-menu,
  .navbar-cta { display: none; }
  .hamburger  { display: flex; }
}
@media (max-width: 480px) {
  .navbar { padding: 14px 5%; }
  .navbar.scrolled { padding: 10px 5%; }
  .brand-name { font-size: 1.25rem; }
  .brand-tagline { display: none; }
}
