/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1F0D24;
  background: #FFF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #7B2D8B 0%, #60236F 100%);
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(123,45,139,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(123,45,139,0.4);
  background: linear-gradient(135deg, #8B3A9B 0%, #7B2D8B 100%);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #7B2D8B;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  border: 2px solid #E8D5EE;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  border-color: #7B2D8B;
  background: #F5EEF8;
  transform: translateY(-2px);
}

/* ── Nav ── */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F5A623;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* ── Menu Cards ── */
.menu-card {
  background: #fff;
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(123,45,139,0.06);
  border: 1px solid rgba(123,45,139,0.06);
  transition: all 0.4s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(123,45,139,0.12);
}

/* ── Floating Animations ── */
@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(3deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}
@keyframes float-medium {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(-2deg); }
}
@keyframes float-fast {
  0%, 100% { transform: translateY(0px) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}
.animate-float-slow { animation: float-slow 5s ease-in-out infinite; }
.animate-float-medium { animation: float-medium 4s ease-in-out infinite; }
.animate-float-fast { animation: float-fast 3.5s ease-in-out infinite; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navbar scrolled ── */
.navbar-scrolled {
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(123,45,139,0.08);
}

/* ── Mobile menu ── */
.mobile-link {
  border-bottom: 1px solid #E8D5EE;
  padding-bottom: 12px;
}
.mobile-link:last-child { border-bottom: none; }
