@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/poppins-v23-latin-300.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v23-latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v23-latin-600.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/poppins-v23-latin-900.woff2') format('woff2');
}
:root {
  --color-brand-light: #819b57;
  --color-primary-light: #faf4ea;
  --color-primary-dark: #31261a;
  --color-brand-dark: #465929;
}
/* Base */
* {
  box-sizing: border-box;
}
body {
  color: var(--color-primary-dark);
  font-family: 'Poppins';
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
address {
  font-style: normal;
}
ul {
  list-style-type: none;
}
/* Button */
.button {
  background-color: var(--color-brand-light);
  color: var(--color-primary-light);
  border: 2px solid var(--color-brand-light);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.button:hover {
  background-color: transparent;
  color: var(--color-brand-dark);
}
/* Links */
.nav-link {
  color: var(--color-primary-light);
  text-decoration: none;
}
.nav-link:hover {
  color: var(--color-brand-light);
  font-weight: 600;
}
.address-link {
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  color: var(--color-primary-light);
}
.address-link:hover {
  color: var(--color-brand-light);
}
.address-copyright {
  font-size: 14px;
  color: #a18268;
}
/* Hero section */
.hero-title {
  color: var(--color-primary-light);
  text-align: center;
  font-size: 128px;
  font-weight: 900;
}
.hero-title .accent {
  color: var(--color-brand-light);
}
/* Main features */
.main-features {
  background-color: var(--color-brand-light);
  color: var(--color-primary-light);
  font-weight: 300;
  font-size: 20px;
}
.section-title {
  color: var(--color-primary-dark);
  font-weight: 900;
  font-size: 64px;
  line-height: 1.3;
}
.section-title .section-accent {
  color: var(--color-brand-dark);
}
.tradition-text span {
  color: var(--color-brand-light);
  font-weight: 600;
}
.tradition-text .uppercase {
  text-transform: uppercase;
}
/* chef section */
.chef-title {
  font-size: 40px;
  font-weight: 600;
}
/* format section */
.format-title {
  font-size: 24px;
  font-weight: 600;
}
.format-details {
  font-size: 14px;
  font-weight: 300;
}
