body {
    font-family: "Segoe UI", Arial, sans-serif;
}

.hero-title,
.section-title,
.why-title,
.extra-title,
.about-title,
.flavours-title,
.newsletter-title,
.nav-list a,
.footer-col h3 {
    font-family: "Impact", "Arial Black", Arial, sans-serif;
    letter-spacing: 0.02em;
}


:root {
    --yellow: #FED64B;
    --red: #E74422;
    --brown: #603F32;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Avenir", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    background: var(--yellow);
    color: var(--brown);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


h1 {
    font-family: "AntiqueOlive", sans-serif;
    font-weight: 400;
    font-size: 48px;
}

.section-title,
.about-title,
.flavours-title,
.extra-title,
.newsletter-title,
.why-title {
    font-family: "AntiqueOlive", sans-serif;
    font-weight: 700;
}

.title-accent {
    color: var(--red);
}

.hero-accent {
    color: var(--red);
}



.site-header {
    background: var(--yellow);
    padding: 2rem 0;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-list a {
    font-family: "AntiqueOlive", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--brown);
    text-decoration: none;
}

.nav-list a:hover,
.nav-list a:focus {
    text-decoration: underline;
}



.hero {
    padding: 4rem 0 5rem;
    background:
        repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.18) 0,
            rgba(255, 255, 255, 0.18) 120px,
            rgba(255, 255, 255, 0) 120px,
            rgba(255, 255, 255, 0) 240px),
        var(--yellow);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-family: "AntiqueOlive", sans-serif;
    font-weight: 800;
    font-size: 64px;
    margin: 0 0 1rem;
    color: var(--brown);
}

.hero-subtitle {
    font-family: "Avenir", sans-serif;
    font-weight: 800;
    font-size: 30px;
    margin: 0 0 2rem;
    color: var(--brown);
}

.hero-btn {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    text-decoration: none;

    padding: 0.9rem 1.6rem;
    border-radius: 999px;

    font-family: "Avenir", sans-serif;
    font-weight: 800;
    font-size: 20px;
}

.hero-btn:hover,
.hero-btn:focus {
    transform: translateY(-2px);
    transition: transform 0.2s;
}



.favorite {
    background: var(--yellow);
    padding: 5rem 0;
}

.favorite-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.section-title {
    font-size: 48px;
    margin: 0 0 1.5rem;
    color: var(--brown);
}

.favorite-body {
    margin: 0;
    color: var(--brown);
}



.why {
    background: var(--red);
    padding: 5rem 0;
}

.why-title {
    font-size: 48px;
    text-align: center;
    color: var(--yellow);
    margin: 0 0 3rem;
}

.why-grid {
    list-style: none;
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem 6rem;

    justify-items: center;
    align-items: center;
}

.why-item {
    text-align: center;
    max-width: 240px;
}

.why-icon {
    width: 140px;
    margin: 0 auto 1rem;
}

.why-item p {
    margin: 0;
    color: var(--white);
    font-family: "Avenir", sans-serif;
    font-weight: 500;
    font-size: 20px;
}


.extra {
    background: var(--yellow);
    padding: 5rem 0;
    text-align: center;
}

.extra-title {
    font-size: 48px;
    color: var(--red);
    margin: 0 0 1.5rem;
}

.extra-text {
    max-width: 720px;
    margin: 0 auto 3rem;
    color: var(--brown);
}

.extra-frame {
    margin: 0;
}

.extra-frame img {
    width: 520px;
    max-width: 100%;
    border-radius: 0;
}


.about {
    padding: 5rem 0;
    background:
        repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.18) 0,
            rgba(255, 255, 255, 0.18) 120px,
            rgba(255, 255, 255, 0) 120px,
            rgba(255, 255, 255, 0) 240px),
        var(--yellow);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
}

.about-title {
    font-size: 48px;
    margin: 0 0 1.5rem;
    color: var(--brown);
}

.about-text {
    margin: 0;
    color: var(--brown);
}


.flavours {
    background: var(--yellow);
    padding: 5rem 0 6rem;
    text-align: center;
}

.flavours-title {
    font-size: 48px;
    margin: 0 0 3rem;
    color: var(--brown);
}

.flavours-grid {
    list-style: none;
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.flavour-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.flavour-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
    border: 3px solid var(--red);
}

.flavour-btn {
    display: inline-block;
    background: var(--brown);
    color: var(--white);
    text-decoration: none;

    padding: 0.7rem 2.2rem;
    border-radius: 999px;

    font-family: "Avenir", sans-serif;
    font-weight: 800;
    font-size: 18px;
}


.newsletter {
    background: var(--red);
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
}

.newsletter-title {
    font-size: 48px;
    margin: 0 0 1rem;
    color: var(--yellow);
}

.newsletter-text {
    margin: 0 auto 2.5rem;
    max-width: 720px;
    font-family: "Avenir", sans-serif;
    font-weight: 500;
}

.newsletter-form {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: 1.2rem;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 999px;
    border: 0;
    outline: none;

    font-family: "Avenir", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--brown);
    background: var(--yellow);
}

.form-consent {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: flex-start;
    text-align: left;
}

.form-consent label {
    font-family: "Avenir", sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.newsletter-btn {
    justify-self: center;

    background: var(--brown);
    color: var(--white);
    border: 0;

    padding: 0.7rem 2.4rem;
    border-radius: 999px;

    font-family: "Avenir", sans-serif;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
}



.site-footer {
    background: var(--yellow);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.footer-info {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.footer-col h3 {
    font-family: "AntiqueOlive", sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--red);
    margin: 0 0 0.75rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--brown);
    text-decoration: none;
}

.footer-col a:hover,
.footer-col a:focus {
    text-decoration: underline;
}

.footer-rule {
    border: 0;
    border-top: 2px solid var(--brown);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: var(--red);
    text-align: center;
    margin: 0;
}



@media (max-width: 768px) {

    .nav-list {
        display: none;
    }


    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: 2;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 18px;
    }


    .favorite-grid {
        grid-template-columns: 1fr;
    }


    .why-title {
        font-size: 24px;
        text-align: left;
    }

    .why-grid {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 2rem;
    }

    .why-item {
        max-width: none;
        width: 100%;
        display: grid;
        grid-template-columns: 90px 1fr;
        column-gap: 1rem;
        align-items: center;
        text-align: left;
    }

    .why-icon {
        width: 90px;
        margin: 0;
    }

    .why-item p {
        font-size: 18px;
    }


    .extra {
        text-align: left;
    }

    .extra-title {
        font-size: 28px;
    }


    .about-grid {
        grid-template-columns: 1fr;
    }


    .flavours-grid {
        grid-template-columns: 1fr;
    }


    .newsletter-title {
        font-size: 28px;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-logos {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-info {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        text-align: left;
    }
}

.extra-frame {
    margin: 0 auto;
    display: block;
    max-width: 520px;
}