/* Vibe Tampa - design tokens
   Sunset-over-the-Gulf palette: hot pink/coral/purple dusk sky over
   turquoise water. Deliberately loud and colorful, not minimalist. */

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --vt-purple: #2D1B4E;
  --vt-purple-deep: #1B0F35;
  --vt-pink: #FF3D81;
  --vt-pink-deep: #E01D63;
  --vt-coral: #FF6B4A;
  --vt-coral-deep: #E24E30;
  --vt-teal: #00C2C7;
  --vt-teal-deep: #009499;
  --vt-yellow: #FFC93C;
  --vt-cream: #FFF8F0;
  --vt-cream-alt: #FFEDE0;
  --vt-ink: #241433;
  --vt-ink-soft: #5E4E70;

  --vt-font-display: "Bricolage Grotesque", sans-serif;
  --vt-font-body: "Public Sans", sans-serif;
  --vt-font-label: "IBM Plex Mono", monospace;
}

body {
  background-color: var(--vt-cream);
  color: var(--vt-ink);
  font-family: var(--vt-font-body);
}

h1, h2, h3, h4, h5, h6,
.vt-display {
  font-family: var(--vt-font-display);
}

.vt-label {
  font-family: var(--vt-font-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vt-main {
  display: block;
  width: 100%;
}
