/* Custom styles - Tailwind will be loaded via CDN */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700&family=Poppins:wght@300;400;500;600&family=Amatic+SC:wght@400;700&display=swap');

:root {
  --background: #ffffff;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted-text: #5a5a5a;
  --primary: #ff4fb8;
  --primary-hover: #e642a6;
  --secondary: #ffd166;
  --accent: #ff8ad0;
  --border: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

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

body {
  color: var(--text);
  background: var(--background);
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

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

.animate-fade-up {
  animation: fade-up 0.6s ease-out forwards;
}

/* Font classes */
.font-display {
  font-family: 'Baloo 2', system-ui, sans-serif;
}

.font-body {
  font-family: 'Poppins', system-ui, sans-serif;
}

.font-decorative {
  font-family: 'Amatic SC', cursive;
}

/* Color utilities */
.text-text {
  color: var(--text);
}

.text-mutedText {
  color: var(--muted-text);
}

.bg-primary {
  background-color: var(--primary);
}

.text-primary {
  color: var(--primary);
}

.bg-primaryHover {
  background-color: var(--primary-hover);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-surface {
  background-color: var(--surface);
}

.border-border {
  border-color: var(--border);
}

/* Border radius */
.rounded-button {
  border-radius: 999px;
}

.rounded-card {
  border-radius: 20px;
}

.rounded-input {
  border-radius: 14px;
}

/* Shadows */
.shadow-card {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.shadow-button {
  box-shadow: 0 10px 20px rgba(255,79,184,0.25);
}
