@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700&family=Prompt:wght@300;400;500;600&display=swap');

:root {
  --bg-deep-navy: #0F172A;
  --surface-glass: rgba(30, 41, 59, 0.7);
  --accent-emerald: #10B981;
  --accent-amber: #F59E0B;
}

body {
  font-family: 'Prompt', sans-serif;
  background-color: var(--bg-deep-navy);
  color: #f8fafc;
  overflow-x: hidden;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, .font-kanit {
  font-family: 'Kanit', sans-serif;
}

/* Glassmorphism utility */
.glass-panel {
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Glowing utilities */
.text-glow-emerald {
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

.text-glow-amber {
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

.glow-btn-emerald {
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
  transition: all 0.3s ease;
}

.glow-btn-emerald:hover {
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.6);
  transform: translateY(-2px);
}

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

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float-delayed {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animate-float-delayed {
  animation: float-delayed 7s ease-in-out infinite;
  animation-delay: 2s;
}

/* Custom Backgrounds */
.hero-gradient {
  position: relative;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
  z-index: -1;
}

.hero-gradient::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
  z-index: -1;
}
