body {
    margin: 0;
    padding: 0;
    color: #5E3D20;
    background-color: white;
    font-family: "Lexend", Arial, Helvetica, sans-serif;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-weight: 350;
    line-height: 32px;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 1rem;
    gap: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 30px;
    width: 30px;
}

.logo h1 {
    font-size: 24px;
}

.nav {
    position: relative;
}

.nav-sections {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.nav-sections a {
    color: #5E3D20;
    text-decoration: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

section {
    padding: 1rem 8rem 1rem 8rem;
}

#home img {
    width: 50%;
    height: auto;
    position: relative;
    top: 70px;
}

#banner {
    margin-bottom: 2rem;
}

#home {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d3e1d3;
    margin: 0 8rem 0 8rem;
    border-radius: 16px;
}

#home button, #about button {
    background-color: #5E3D20;
    color: white;
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 16px;
    margin-top: 1rem;
}

#about, #products {
    text-align: left;
    margin-top: 3rem;
}

#products button {
    background-color: #5E3D20;
    color: white;
    border: none;
    padding: 12px 5rem;
    font-size: 16px;
    cursor: pointer;
    border-radius: 16px;
    margin-top: 1rem;
}

.item-button {
    text-align: center;
}

#products h1 {
    text-align: center;
}

#product-items{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.item {
    background-color: whitesmoke;
    padding: 1rem;
    border-radius: 16px;
    line-height: 0.5;
}

.item h3, p {
    line-height: 0.5; 
}

#products img {
    width: 350px;
    height: auto;
    border-radius: 8px;
}

#about h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background-color: #f2c4b8;
    border-radius: 16px;
}

#picture img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

#picture-border {
    width: 45%;
}

#details {
    width: 75%;
}

#details h2 {
    margin-bottom: 1rem;
}

#details h3 {
    font-weight: normal;
    line-height: 1.6;
}

@media (max-width: 600px) {
    section {
        padding: 1rem 2rem;
    }

    body {
        font-size: 14px;
    }

    /* Header */
    .header {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 2rem;
    }

    .logo h1 {
        font-size: 20px;
    }

    .menu-icon {
        display: block;
    }

    .nav-sections {
        display: none;
        flex-direction: column;
        background-color: #f9f9f9;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 1rem 0;
        z-index: 10;
    }

    .menu-icon:hover + .nav-sections {
        display: flex;
    }

    #home {
        flex-direction: column;
        text-align: center;
        margin: 0 2rem;
        padding: 2rem;
    }

    #home img {
        width: 80%;
        margin-bottom: 2rem;
        top: 0;
    }

    #banner {
        width: 100%;
    }

    #banner h1 {
        font-size: 36px;
    }

    #banner h2 {
        font-size: 20px;
    }

    .about-content {
        gap: 1rem;
        padding: 1.5rem;
    }

    #details h2 {
        font-size: 18px;
    }

    #details h3 {
        font-size: 15px;
        line-height: 1.4;
    }

    #details button,
    #home button,
    #products button {
        width: 100%;
        padding: 10px;
        border-radius: 12px;
        font-size: 15px;
    }

    /* Products */
    #product-items {
        flex-direction: column;
        align-items: center;
    }

    #products img {
        width: 90%;
    }

    .item {
        width: 100%;
        text-align: center;
    }

    #about {
        padding: 2rem 4rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    #picture,
    #details {
        width: 100%;
    }

    #picture img {
        width: 80%;
        margin: 0 auto;
        display: block;
    }

    #details h2 {
        font-size: 20px;
    }

    #details h3 {
        font-size: 16px;
        line-height: 1.5;
    }

    #details button {
        width: auto;
        padding: 10px 24px;
    }
}