/* =====================================================
   love.semy.ro — Shared Design System
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&display=swap');

:root {
  --pink-100: #fff0f5;
  --pink-200: #ffd6e7;
  --pink-300: #ffadd2;
  --pink-400: #f783ac;
  --pink-500: #e64980;
  --pink-600: #c2255c;
  --rose-soft: #fce4ec;
  --rose-mid:  #f48fb1;
  --rose-deep: #d81b60;
  --dark-bg:   #0d0810;
  --dark-card: rgba(255,255,255,0.07);
  --blur:      blur(20px);
  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-pink: 0 8px 40px rgba(216,27,96,0.25);
  --font: 'Outfit', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark-bg);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Glassmorphism card ── */
.glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
}

/* ── Glow button ── */
.btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  border: none;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-500), var(--rose-deep));
  color: #fff;
  box-shadow: 0 0 30px rgba(230,73,128,0.5), 0 4px 20px rgba(0,0,0,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-glow:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 50px rgba(230,73,128,0.7), 0 8px 30px rgba(0,0,0,0.4);
}
.btn-glow:hover::before { opacity: 1; }
.btn-glow:active { transform: translateY(0) scale(0.98); }

/* ── Pulse ring ── */
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ── Floating particles canvas ── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── Page content above particles ── */
.page-content {
  position: relative;
  z-index: 10;
}

/* ── Ambient aurora ── */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: aurora-drift 18s ease-in-out infinite alternate;
}
.aurora-orb:nth-child(1) {
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, #e64980, transparent 70%);
  top: -20%; left: -10%;
  animation-delay: 0s;
}
.aurora-orb:nth-child(2) {
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, #9c36b5, transparent 70%);
  top: 50%; right: -15%;
  animation-delay: -6s;
}
.aurora-orb:nth-child(3) {
  width: 35vw; height: 35vw;
  background: radial-gradient(circle, #c2255c, transparent 70%);
  bottom: -10%; left: 30%;
  animation-delay: -12s;
}

@keyframes aurora-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.1); }
  66%  { transform: translate(-20px, 50px) scale(0.95); }
  100% { transform: translate(60px, 20px) scale(1.05); }
}

/* ── Confetti canvas ── */
canvas#confetti {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  pointer-events: none;
}
