/* ============================================================
   DINGBAT DESIGNS – SHARED STYLES v6.7
   Brand: Dingbat Designs by Tovas | GorMatch
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --hot-pink:   #E2177A;
  --rose:       #F0635C;
  --blush:      #FFF0F7;
  --cream:      #FFF8FC;
  --gold:       #E8B84B;
  --gold-light: #F7D98A;
  --dark:       #2A1520;
  --mid:        #6B3050;
  --white:      #FFFFFF;
  --glass:      rgba(255,255,255,0.65);
  --glass-border: rgba(255,200,230,0.6);
  --shadow-pink: 0 8px 32px rgba(226,23,122,0.18);
  --shadow-soft: 0 4px 24px rgba(42,21,32,0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 100px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  cursor: default;
}

/* ── Floating hearts background ───────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(240,99,92,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(226,23,122,0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid var(--glass-border);
  box-shadow: 0 2px 24px rgba(226,23,122,0.09);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 6px rgba(226,23,122,0.35));
  transition: transform 0.3s ease;
}
.nav-icon:hover { transform: scale(1.12) rotate(-5deg); }

.nav-logo-text {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--hot-pink);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* Image-based nav buttons */
.nav-btn-img {
  height: 42px;
  width: auto;
  display: block;
  transition: transform 0.22s ease, filter 0.22s ease;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.15));
}
.nav-links a:hover .nav-btn-img {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 6px 16px rgba(226,23,122,0.35));
}
.nav-links a.active .nav-btn-img {
  filter: drop-shadow(0 4px 12px rgba(226,23,122,0.45)) brightness(1.05);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--hot-pink) 0%, var(--rose) 100%);
  color: white;
  box-shadow: 0 6px 24px rgba(226,23,122,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(226,23,122,0.5);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(232,184,75,0.4), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232,184,75,0.5);
}

.btn-ghost {
  background: var(--glass);
  backdrop-filter: blur(10px);
  color: var(--hot-pink);
  border: 2px solid rgba(226,23,122,0.3);
}
.btn-ghost:hover {
  background: var(--hot-pink);
  color: white;
  transform: translateY(-2px);
}

/* ── Glass card ────────────────────────────────────────────── */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ── Section wrapper ───────────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: 90px 48px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hot-pink);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--dark);
}

.section-title span {
  background: linear-gradient(135deg, var(--hot-pink), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--mid);
  max-width: 560px;
  margin-top: 16px;
}

/* ── Divider hearts ────────────────────────────────────────── */
.divider {
  display: block;
  width: 280px;
  margin: 0 auto;
  opacity: 0.85;
}

/* ── Pill badge ────────────────────────────────────────────── */
.pill {
  display: inline-block;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pill-pink { background: rgba(226,23,122,0.12); color: var(--hot-pink); }
.pill-gold { background: rgba(232,184,75,0.18); color: #8B6914; }

/* ── Footer ────────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 52px 48px 36px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(5deg); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(226,23,122,0.25); }
  50%       { box-shadow: 0 0 40px rgba(226,23,122,0.5); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.animate-float     { animation: float 4s ease-in-out infinite; }
.animate-float-slow{ animation: float-slow 6s ease-in-out infinite; }
.animate-fade-up   { animation: fade-up 0.7s ease both; }

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 12px 20px; }
  .nav-logo-text { display: none; }
  .nav-links a { padding: 7px 12px; font-size: 0.82rem; }
  .section { padding: 60px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
