/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background: #0D2A45;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ===== VARIABLES ===== */
:root {
  --color-navy:        #0D2A45;
  --color-navy-light:  #1a3a5c;
  --color-cream:       #F5EFE6;
  --color-ticker:      #D61C74;
  --color-badge:       #3D1A5C;
  --color-btn-yellow:  #E8C040;
  --color-btn-yellow-h:#d4ae30;
  --color-pink-from:   #D61C74;
  --color-pink-to:     #F4855F;
  --color-text-muted:  rgba(255,255,255,0.65);

  --font-serif: 'Playfair Display', serif;
  --font-sans:  'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-pill: 999px;

  --max-w: 1200px;
  --px: clamp(1.25rem, 5vw, 5rem);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.875rem;
  border-radius: var(--radius-pill);
  padding: 1rem 2rem;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--color-btn-yellow);
  color: #1a1a1a;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(232, 192, 64, 0.35);
}
.btn--primary:hover {
  background: var(--color-btn-yellow-h);
  box-shadow: 0 6px 28px rgba(232, 192, 64, 0.5);
  transform: translateY(-1px);
}

.btn--white {
  background: #ffffff;
  color: var(--color-navy);
  padding: 0.9rem 2.5rem;
}
.btn--white:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}