@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
@import url("./layout.css");
@import url("./components.css");

:root {
  --bg: #f4efe7;
  --bg-soft: #fbf7f1;
  --surface: rgba(255, 252, 247, 0.82);
  --surface-strong: #fffaf2;
  --surface-muted: rgba(255, 255, 255, 0.72);
  --border: rgba(92, 72, 46, 0.12);
  --border-soft: rgba(92, 72, 46, 0.08);
  --shadow: 0 20px 45px rgba(74, 57, 38, 0.12);
  --shadow-soft: 0 18px 32px rgba(43, 34, 24, 0.1);
  --text: #2b2218;
  --text-soft: #3f3327;
  --muted: #7e6a55;
  --muted-2: #9b8a77;
  --primary: #0f766e;
  --primary-2: #14b8a6;
  --accent: #f59e0b;
  --accent-2: #fcd34d;
  --danger: #c2410c;
  --danger-2: #f97316;
  --success: #15803d;
  --success-2: #4ade80;
  --dark: #2b2621;
  --dark-2: #17120f;
  --nav-bg: rgba(36, 31, 25, 0.92);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

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

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.16), transparent 24%),
    linear-gradient(180deg, #f7f2ea 0%, #efe6db 100%);
  position: relative;
  animation: pageFade 0.35s ease;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -110px;
  background: rgba(20, 184, 166, 0.18);
}

body::after {
  width: 240px;
  height: 240px;
  left: -120px;
  bottom: 60px;
  background: rgba(245, 158, 11, 0.14);
}

body,
button,
input,
select,
textarea {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

canvas {
  max-width: 100%;
}

button,
a {
  color: inherit;
  outline: 0 !important;
}

a {
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

button:active,
a:active {
  transform: scale(0.98);
}

input,
button,
select,
textarea {
  font: inherit;
}

.text-center {
  text-align: center;
}

@keyframes spin {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
