:root {
  --color-primary-dark: #31261a;
  --color-primary-light: #faf4ea;
  --color-brand-light: #819b57;
  --color-brand-dark: #465929;
  /* A18268 */
  /*  CFCFBC*/
  --font-main: 'Poppins', sans-serif;
  /* --font-secondary: 'Roboto', sans-serif;
  --font-third: 'Inter', sans-serif;
  --font-fourth: 'Gilroy', sans-serif; */
}
body {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}
address {
  font-style: normal;
}
/* Base */
* {
  box-sizing: border-box;
}
.list {
  list-style: none;
}
.section {
  padding: 48px 0;
}
.container {
  width: 100%;
  max-width: 1288px;
  margin: 0 auto;
  padding: 0 24px;
}
.uppercase {
  text-transform: uppercase;
}
.accent {
  color: var(--color-brand-light);
}
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* Button */
.button {
  color: var(--color-primary-light);
  background-color: var(--color-brand-light);
  border: 2px solid var(--color-brand-light);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  padding: 16px 32px;
}
.button:hover,
.button:focus {
  color: var(--color-brand-dark);
  background-color: transparent;
}
/* Link */
.link {
  color: var(--color-primary-light);
  text-decoration: none;
}
.link:hover,
.link:focus,
.current {
  color: var(--color-brand-light);
  font-weight: 600;
}

/* Section */
.section-title {
  font-weight: 900;
  font-size: 64px;
  line-height: 1.3;
}
.section-title .accent {
  color: var(--color-brand-dark);
}

/* Hero section */
.hero-section {
  padding: 272px 0;
}
.hero-title {
  margin-bottom: 0;

  color: var(--color-primary-light);

  font-weight: 900;
  font-size: 128px;
  text-align: center;
}

/* Traditions section */
.traditaons-section {
  padding-top: 96px;
}
.traditions-title {
  padding-bottom: 42px;
}
.advantages-list {
  color: #faf4ea;
  background-color: var(--color-brand-light);
}
.advantages-item {
  font-weight: 300;
  font-size: 20px;
}
.traditions-text span {
  color: var(--color-brand-light);
  font-weight: 600;
}
/* Chefs section */
.chefs-title {
  padding-bottom: 80px;
}
.chefs-name {
  font-weight: 600;
  font-size: 40px;
}
/* Formats section */
.formats-title {
  padding-bottom: 80px;
}
.format-title {
  font-weight: 600;
  font-size: 24px;
}
.format-text {
  font-weight: 300;
  font-size: 14px;
}
/* Contact section */
.contact-title {
  padding-bottom: 16px;
}
/* Address */
.address-item,
.address-link {
  font-weight: 300;
  font-size: 16px;
}
.address-copyright {
  font-size: 14px;
}
