
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-weight: 300;
    src: url('../fonts/poppins-v21-latin-300.woff2') format('woff2'),
        url('../fonts/poppins-v21-latin-300.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-weight: 400;
    src: url('../fonts/poppins-v21-latin-regular.woff2') format('woff2'),
        url('../fonts/poppins-v21-latin-regular.ttf') format('truetype');
}


@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-weight: 600;
    src: url('../fonts/poppins-v21-latin-600.woff2') format('woff2'),
        url('../fonts/poppins-v21-latin-600.ttf') format('truetype');
}


@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-weight: 900;
    src: url('../fonts/poppins-v21-latin-900.woff2') format('woff2'),
        url('../fonts/poppins-v21-latin-900.ttf') format('truetype');
}

:root {
    --color-primary-dark: rgba(49, 38, 26, 1);
    --color-primary-light:rgba(250, 244, 234, 1);
    --color-brend-dark: rgba(70, 89, 41, 1);
    --color-brend-light:rgba(129, 155, 87, 1);
    --color-copyright:rgba(161, 130, 104, 1);
}
/*Base*/
* {
    box-sizing: border-box;
}
body {
    color: var(--color-primary-dark);
    font-family: 'Poppins', sans-serif;
    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;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.visualli-hiden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.section {
    padding: 48px 0;
}
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
/*Button*/
.button {
    padding: 16px 32px;
    color: var(--color-primary-light);
    font-weight: 600;
    background-color: var(--color-brend-light);
    border: 2px solid var(--color-brend-light);
    border-radius: 8px;
    cursor: pointer;
}

.button:hover{
    color:var(--color-brend-dark);
    background-color: transparent;
}
/*Link*/
.link {
    color: var(--color-primary-light);
    text-decoration: none;
}

.link:hover {
    color: var(--color-brend-dark);
    font-weight: 600;
}
/* Header */

.header-container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.header-nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    
}
.header-menu {
    display: flex;
    gap: 64px;
    flex-grow: 1;
    justify-content: center;
}
/*Hero sections*/
.hero-section {
    padding: 272px 0;
}
.hero-title {
    margin-bottom: 0;
    color: var(--color-primary-light);
    text-align: center;
    font-size: 128px;
    font-weight: 700; 
}

.hero-title .accent {
    color: var(--color-brend-light);
}
/*Advantages section*/
.advantages-section {
    padding: 16px;
    background-color: var(--color-brend-light);
}
.advantages-list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    
}

.section-title {
    color: var(--color-primary-dark);
    font-size: 64px;
    font-weight: 900;
    line-height: 1.3;
}

.section-title .accent {
    color: var(--color-brend-light);
}

.advantages-item {
    color: var(--color-primary-light);
    font-size: 20px;
    font-weight: 300;
}
/*Traditions section*/
.traditions-section {
    padding-top: 96px;
}

.traditions-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.tradition-content {
    max-width: 710px;
}
.traditions-title {
    margin-bottom: 42px;
}

.traditions-text .brend {
    color: var(--color-brend-light);
    font-weight: 600;
}

.traditions-text .uppercase {
    text-transform: uppercase;
}

.traditions-text.limited {
    max-width: 330px;
}

/* Chefs section */
.chefs-title {
    margin-bottom: 80px;
}

.chef-title {
    margin-bottom: 16px;
    font-size: 40px;
    font-weight: 600;
}

/* Formats 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 {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-primary-light);
    text-decoration: none;
}

.address-link:hover {
    color: var(--color-brend-light);
}

.copyright {
    font-size: 14px;
    color: var(--color-copyright);
}