/* ========== BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; }

/* ========== CUSTOM PROPERTIES ========== */
:root {
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-3xl: 2.5rem;
  --shadow-soft: 0 4px 24px rgba(93, 44, 78, 0.08);
  --shadow-md: 0 8px 32px rgba(93, 44, 78, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== BADGES ========== */
.badge {
  display: inline-block;
  background: linear-gradient(135deg, #7B3B6A, #9B4D86);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
}

.badge-light {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #F9F0F7;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #D4910B, #FFC020);
  color: #1E0E18;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(212, 145, 11, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 145, 11, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.7rem 1.75rem;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  backdrop-blur-sm;
  transition: background var(--transition), border-color var(--transition);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ========== INPUTS ========== */
.input-field {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #E8C2DD;
  border-radius: var(--radius-lg);
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1rem;
  color: #1E0E18;
  background: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.input-field::placeholder { color: #D79EC8; }
.input-field:focus {
  border-color: #9B4D86;
  box-shadow: 0 0 0 4px rgba(155, 77, 134, 0.1);
}

/* ========== NAVBAR SCROLLED ========== */
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-blur-md;
  box-shadow: 0 2px 20px rgba(93, 44, 78, 0.1);
}
#navbar.scrolled .nav-link { color: #3D1D33 !important; }

/* ========== SCROLL REVEAL (progressive enhancement) ========== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== MOBILE MENU ========== */
.mobile-link {
  display: block;
  padding: 0.6rem 0;
  border-bottom: 1px solid #F3E0EE;
}
.mobile-link:last-child { border-bottom: none; }
</style>
