:root {
    --color-primary: #5A3E2B;
    --color-accent: #D8B56A;
    --color-surface: #FAF6EF;
    --color-bg:  #FEFDFB;
    --color-text: #1B1A18;
    --spacing-xs: 0.8rem;
    --spacing-s: 1.2rem;
    --spacing-m: 2rem;
    --spacing-l: 3.2rem;
    --spacing-xl: 4.8rem;
    --radius-1: 6px;
    --radius-2: 12px;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    --shadow-inset: inset 0 0 5px rgba(90, 62, 43, .1);
    --shadow-hover: 0 8px 25px rgba(0,0,0,0.12);
    --shadow-text: var(--color-primary) 4px 1px;
    --transition-cards: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
    --transition-burger: opacity 0.4s ease, background-color 0.2s ease, transform 0.4s;
    --transition-button: transform 0.4s ease, color 0.4s ease, letter-spacing 0.4s ease, border-color 0.4s ease;
    --transition-letter: letter-spacing 0.5s ease;
}

html {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--color-bg);
  margin: 0;
  padding: 0;
}

section {
  padding: var(--spacing-xl) var(--spacing-m);
  max-width: 1200px;
  margin: 0 auto;
}

a {
    display: inline-block;
    color: var(--color-bg);
    font-size: 1.3rem;
    text-decoration: none;
    transition: var(--transition-button);
}

a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
    letter-spacing: 1px;
}

p {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

h1 {
  font-family: 'Blinker', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 var(--spacing-xs) 0;
  letter-spacing: 1px;
  transition: var(--transition-letter);
}


h2 {
    font-size: 1.75rem;
    font-weight: 600;
    font-family: 'Blinker', sans-serif;
    color: var(--color-primary);
    margin-top: 0;
    letter-spacing: 1px;
    transition: var(--transition-letter);
}

h3 {
    color: var(--color-primary);
    font-size: 1.375rem;
    font-weight: 600;
    font-family: 'Blinker', sans-serif;
    letter-spacing: 1px;
    transition: var(--transition-letter);
}

@media (min-width: 991px) {
    p {
        font-size: 1.25rem;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.1rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 1400px) {
    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 2.6rem;
    }

    h3 {
        font-size: 1.6rem;
    }
}

button, .btn {
  display: inline-block;
  color: var(--color-primary);
  background: transparent;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: var(--spacing-xs) var(--spacing-s);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-1);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

button a, .btn a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: inherit;
  transition: all 0.3s ease;
}

button:hover, .btn:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

button:hover a, .btn:hover a {
  color: white;
  transform: none;
  letter-spacing: normal;
}

@media (min-width: 991px) {
  button, .btn {
    font-size: 1.1rem;
    padding: var(--spacing-s) var(--spacing-m);
  }
}

.card {
    background: var(--color-surface);
    padding: var(--spacing-m);
    border-radius: var(--radius-2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow);
    transition: var(--transition-cards);
    cursor: pointer;

  h3 {
    margin-top: 0;
    margin-bottom: var(--spacing-xs);
  }
}

.card.checked {
  box-shadow: var(--shadow-hover);
  transform: scale(1.05);
  border: 1px solid rgba(216, 181, 106, 1);
}

.card.checked h3 {
  letter-spacing: 3px;
}


/* Footer */

footer {
  background: var(--color-primary);
  color: var(--color-bg);
}

.footer-container {
  display: grid;
  gap: var(--spacing-l);
  padding: var(--spacing-xl) var(--spacing-m);
  margin: 0 auto;
}

@media (min-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
}

.footer-header {
  padding: 0;

  h2 {
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
  }

  p {
    margin: var(--spacing-xs) 0;
    color: white;
  }
}

.footer-nav {
  padding: 0;

  h2 {
    color: var(--color-accent);
    margin-top: 0;
    margin-bottom: var(--spacing-s);
  }
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;

  li {
    margin-bottom: var(--spacing-xs);
  }

  a {
    color: var(--color-bg);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  a:hover {
    color: var(--color-accent);
  }

  a.active {
    color: var(--color-accent);
    font-weight: 600;
    transform: translateX(5px);
    letter-spacing: 1px;
  }
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: var(--spacing-s) var(--spacing-m);
  text-align: center;

  p {
    text-align: left;
    font-weight: 200;
    font-size: 1rem;
    opacity: 0.8;
    color: white;
  }
}





/* Fonts */

/* inter-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-100italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-100italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-200italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-200italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-900italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  src: url('../assets/fonts/Inter v20 Latin/inter-v20-latin-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* blinker-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Blinker';
  font-style: normal;
  font-weight: 100;
  src: url('../assets/fonts/Blinker v14 Latin/blinker-v14-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* blinker-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Blinker';
  font-style: normal;
  font-weight: 200;
  src: url('../assets/fonts/Blinker v14 Latin/blinker-v14-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* blinker-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Blinker';
  font-style: normal;
  font-weight: 300;
  src: url('../assets/fonts/Blinker v14 Latin/blinker-v14-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* blinker-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Blinker';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/Blinker v14 Latin/blinker-v14-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* blinker-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Blinker';
  font-style: normal;
  font-weight: 600;
  src: url('../assets/fonts/Blinker v14 Latin/blinker-v14-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* blinker-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Blinker';
  font-style: normal;
  font-weight: 700;
  src: url('../assets/fonts/Blinker v14 Latin/blinker-v14-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* blinker-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Blinker';
  font-style: normal;
  font-weight: 800;
  src: url('../assets/fonts/Blinker v14 Latin/blinker-v14-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* blinker-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Blinker';
  font-style: normal;
  font-weight: 900;
  src: url('../assets/fonts/Blinker v14 Latin/blinker-v14-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}