@theme {
  --color-primary: #5B9A8B;
  --color-secondary: #8EC3B8;
  --color-accent: #E8F4F1;
  --color-success: #6BBF8A;
  --color-warning: #F5A623;
  --color-danger: #E57373;
  --color-background: #FFFFFF;
  --color-surface: #F2F5F3;
  --color-text-primary: #33403B;
  --color-text-secondary: #5D7067;
  --color-text-muted: #7A8E85;
  --color-border: #E5EBE8;
  --color-border-light: #F2F5F3;
  
  --font-sans: 'Inter', system-ui, sans-serif;
  
  --shadow-sm: 0 1px 3px 0 rgb(91 154 139 / 0.08);
  --shadow-md: 0 4px 12px -2px rgb(91 154 139 / 0.1);
  --shadow-lg: 0 10px 28px -6px rgb(91 154 139 / 0.12);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-background);
  color: var(--color-text-primary);
  line-height: 1.65;
}

input, select, textarea {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgb(91 154 139 / 0.12);
}

button {
  transition: background-color 0.2s ease, transform 0.1s ease;
}

button:active:not(:disabled) {
  transform: scale(0.98);
}

a {
  transition: color 0.2s ease;
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
