
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-weight: 300;
  src: url('../fonts/poppins-v23-latin-300.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-weight: 400;
  src: url('../fonts/poppins-v23-latin-regular.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-weight: 600;
  src: url('../fonts/poppins-v23-latin-600.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-weight: 900;
  src: url('../fonts/poppins-v23-latin-900.woff2') format('woff2'); 
}

:root {
    --color-primary-dark: #31261A;
    --color-primary-light: #faf4ea;
    --color-brand-light: #819b57;
    --color-brand-dark: #465929;
}

/* Base*/
body {
  color: var(--color-primary-dark);
  font-family: "Poppins" , sans-serif;  
  font-size: 18 px;
  font-weight: 400;
  line-height: 1.5;
}

address {
  font-style: normal;
}

ul {
    list-style-type: none;
}

/* Button */
.button {
  color: var(--color-primary-light);
  font-weight: 600;
  background-color: var(--color-brand-light);
  border: 2px solid var(--color-brand-light);
  border-radius: 8px;
  cursor: pointer;
}

.button:hover {
  background-color: transparent;
  color: var(--color-brand-dark)
}

/* Link */
.link {
  color: var(--color-primary-light);
  text-decoration: none;
}

.link:hover {
  color: var(--color-brand-light);
  font-weight: 600;
}

/* 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);
}

/* Advantages section */
.advantages-list {
    color: var(--color-primary-light);
    background-color: var(--color-brand-light);
}

.advantages-item {
  font-size: 20px;
  font-weight: 300;

}

.sectiom-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.3;
}

.sectiom-title .accent {
    color: var(--color-brand-dark)
}

/* Traditions section */
.traditions-text .brand {
  color: var(--color-brand-light);
  font-weight: 600;
}

.traditions-text .uppercase {
  text-transform: uppercase;

}

/* Chefs section */
.chef-title {
  font-size: 40px;
  font-weight: 600;
}

/* Formats section */
.format-title {
  font-size: 24px;
  font-weight: 600;
}

.format-text {
  font-size: 14px;
  font-weight: 300;
}

/* Footer */
.address-link {
  color: var(--color-primary-light);
  font-style: 16px;
  font-weight: 300;
  text-decoration: none;
}

.address-link:hover {
  color: var(--color-brand-light);
}

.address-copyright {
  font-size: 14px;
}