:root{
  --color-primary-dark: #31261a;
--color-primary-light: #faf4ea;
--color-brand-light: #819857;
--color-brand-dark:#465929;
}
/*Base*/
*{
    box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6,p{
    margin-top: 0;
}
body{
    color: var(--color-primary-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}
address{
    font-style: normal;
}
ul{
    list-style-type: none;
}
.section{
    padding: 48px 0;
}
.visually-hidden{
        position: absolute;
        left: -10000px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }
.container{
    width: 100%;
    max-width: 1288px;
    margin:0 auto;
    padding:0 24px;
}
/*Button*/
.button{
    padding: 16px 32px;
    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{
    color:var(--color-brand-dark);
    background-color: transparent;
}

/*Link*/
.link{
    color: var(--color-primary-light);
    text-decoration: none;
    
}
.link:hover{
    color: var(--color-brand-light);
    font-weight: 600;
}

/*Hero*/
.hero-section{
    padding: 272px, 0;
}

.hero-title{
    margin-bottom: 106px;
    color: var(--color-primary-light);
    text-align: center;
    font-size: 128px;
    font-weight: 900;
}
.hero-title .accent{
    color: var(--color-brand-light);
    
}
/*Advantages*/
.advantages-list{
    color: var(--color-primary-light);
    background-color: var(--color-brand-light);
}
.advantages-item{
font-size: 20px;
font-weight: 300;
}

/*Section*/
.section-title{
    font-size: 64px;
    font-weight: 900;
    line-height: 1.3;
}
.section-title .accent{
    color: var(--color-brand-light);
}
/*Traditions*/
.traditions-title{
    margin-bottom: 42px;
}
.traditions-section{
    padding-top:96px ;
}
.traditions-text .brand{
color: var(--color-brand-light);
font-weight: 600;
}
.traditions-text .uppercase {
    color: var(--color-brand-light);
    text-transform: uppercase;
}
/* Chefs sections*/
.chef-title{
    margin-bottom: 16px;
    font-size: 40px;
    font-weight: 600;
}
.chefs-title{
    margin-bottom: 80px;
}
/*Format section*/
.formats-title{
    margin-bottom: 80px;
}
.format-title{
    font-size: 24px;
    font-weight: 600;
}
.format-text{
    font-size: 14px;
        font-weight: 300;
}
/* Contact section*/
.contact-title{
    margin-bottom: 16px;
}
/* Footer*/
.address-link{
    color: var(--color-primary-light);
    font-size: 16px;
    font-weight: 300;
}
.address-link:hover{
    color: var(--color-brand-light);
    text-decoration: none;  
}
.address-copyright{
    font-size: 14px;
}