@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  /* Backgrounds */
  --bg-main: #fffaf5;
  --bg-soft: #fff3eb;
  --bg-card: rgba(255, 255, 255, 0.72);

  /* Text */
  --text-main: #4a3d35;
  --text-soft: #7b6b60;
  --text-muted: #a0948c;

  /* Coral */
  --coral: #f29b8f;
  --coral-light: #ffd6cf;
  --coral-dark: #e07a6d;

  /* Yellow */
  --yellow: #f6d77a;
  --yellow-light: #fff3c4;

  /* Mint */
  --mint: #b8dfd0;
  --mint-light: #e4f5ef;

  /* Sky */
  --sky: #b7d7f5;
  --sky-light: #e6f3fe;

  /* Lavender */
  --lavender: #d8c7f0;
  --lavender-light: #f2ecfc;

  /* White */
  --white: #ffffff;

  /* Borders */
  --border-soft: rgba(74, 61, 53, 0.08);
  --border-medium: rgba(74, 61, 53, 0.14);

  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(74, 61, 53, 0.08);
  --shadow-hover: 0 20px 40px rgba(74, 61, 53, 0.14);

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;

  /* Transition */
  --transition: 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);

  /* Typography */
  --font-display: 'Baloo 2', cursive;
  --font-body: 'Nunito Sans', sans-serif;

  /* Layout */
  --nav-height: 72px;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

p {
  color: var(--text-soft);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

input,
textarea,
select {
  font-family: var(--font-body);
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset {
  border: none;
}
