/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; -webkit-font-smoothing: antialiased; }

/* ── Floating card animations ── */
.floating-card-1 {
  animation: float1 4s ease-in-out infinite;
}
.floating-card-2 {
  animation: float2 5s ease-in-out infinite;
}
.floating-card-3 {
  animation: float3 3.5s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(-3deg); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(6px); }
}

/* ── Menu card hover ── */
.menu-card {
  will-change: transform;
}

/* ── Review card hover ── */
.review-card {
  will-change: transform;
}

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

/* ── Geometric accent shapes ── */
.geo-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #2A0F22; }
::-webkit-scrollbar-thumb { background: #6B2F5B; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #C46FCB; }

/* ── Nav active state ── */
nav a.active {
  color: #F5A623 !important;
}

/* ── Mobile menu transition ── */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
#mobile-menu.open {
  max-height: 400px;
}
