@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;600;700&display=swap');

:root {
  --bg-warm-ivory: #FDFBF7;
  --primary-cobalt: #1A508B;
  --accent-orange: #FF8C42;
  --glass-white: rgba(255, 255, 255, 0.7);
  --text-dark: #2D3436;
  --text-light: #636E72;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-warm-ivory);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

/* Organic Shapes & Glassmorphism */
.gaudi-blob {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  transition: all 1s ease-in-out;
}

.gaudi-blob:hover {
  border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
}

.glass-card {
  background: var(--glass-white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.organic-border {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Animations */
@keyframes morph {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.animate-morph {
  animation: morph 8s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Tailwind Utilities (if needed for custom overrides) */
.bg-primary { background-color: var(--primary-cobalt); }
.text-primary { color: var(--primary-cobalt); }
.bg-accent { background-color: var(--accent-orange); }
.text-accent { color: var(--accent-orange); }

/* Liquid Mosaic Background */
.liquid-mosaic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.mosaic-dot {
  position: absolute;
  filter: blur(60px);
  opacity: 0.6;
  animation: morph 12s infinite alternate;
}
