@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --color-forest-light: #428177;
  --color-forest-medium: #054239;
  --color-forest-dark: #002623;
  --color-wheat-light: #edebe0;
  --color-wheat-medium: #b9a779;
  --color-wheat-dark: #988561;
}

body {
  background-color: var(--color-forest-dark);
  color: var(--color-wheat-light);
  font-family: 'Cairo', sans-serif;
}

.gradient-text {
  background: linear-gradient(90deg, var(--color-wheat-medium), var(--color-forest-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card {
  background: rgba(5, 66, 57, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(185, 167, 121, 0.1);
}