/* =========================================
   BIOBOER BUSSCHOTS
   style2.css
   ========================================= */


/* =========================================
   BASIC
   ========================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #f5ecd8;
    color: #405533;
    font-family: Georgia, "Times New Roman", serif;
}

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


/* =========================================
   PAGE
   ========================================= */

.page {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 28px 42px 55px;
    text-align: center;
}


/* =========================================
   HEADER
   ========================================= */

header {
    width: 100%;
    text-align: center;
}

.logo {
    width: 150px;
    height: auto;
    margin: 0 auto 14px;
}

h1 {
    margin: 0 0 8px;
    color: #405533;
    font-size: 42px;
    line-height: 1.15;
    font-weight: normal;
}

.subtitle {
    margin: 0;
    color: #405533;
    font-size: 22px;
    line-height: 1.35;
}

.spacer {
    width: 96px;
    height: auto;
    margin: 24px auto 36px;
}


/* =========================================
   VEGETABLE ROW
   ========================================= */

.vegetables {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    padding: 0 0 16px;
}

.vegetables img {
    width: 18%;
    height: 118px;
    object-fit: contain;
}


/* =========================================
   INFORMATION ROW - DESKTOP
   aligned with vegetable row width
   ========================================= */

.three {
    width: 100%;
    display: grid;
    grid-template-columns: 1.45fr 1.1fr 0.72fr;
    gap: 20px;
    align-items: start;
    margin: 40px 0 0;
}

.three section {
    min-width: 0;
}

/* left / center / right systematic alignment */
.opening-section {
    text-align: left;
}

.contact-section {
    text-align: left;
}

.follow-section {
    text-align: center;
}


/* =========================================
   HEADER PNGS ABOVE SECTIONS
   same visual height for opening/contact
   ========================================= */

.icon-openingsuren {
    height: 56px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    margin: 0 0 10px 0;
}

.icon-contact {
    height: 56px;
    width: auto;
    max-width: 205px;
    object-fit: contain;
    margin: 0 0 10px 0;
}


/* =========================================
   OPENING HOURS
   ========================================= */

.opening-hours {
    width: 100%;
    max-width: 380px;
    margin: 0;
    font-size: 18px;
    line-height: 1.72;
    font-weight: bold;
}

.opening-hours div {
    display: grid;
    grid-template-columns: 150px 155px;
    column-gap: 16px;
    margin-bottom: 3px;
}

.opening-hours span:first-child {
    text-align: left;
}

.opening-hours span:last-child {
    text-align: left;
    white-space: nowrap;
}


/* =========================================
   CONTACT
   ========================================= */

.contact-info {
    width: 100%;
    max-width: 315px;
    margin: 0 auto 0 0;
    font-size: 17px;
    line-height: 1.55;
    text-align: left;
}

.contact-row {
    display: grid;
    grid-template-columns: 24px auto;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
}

.contact-row a {
    color: #405533;
    text-decoration: none;
}

.contact-row a:hover {
    text-decoration: underline;
}

.smallicon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.vat {
    margin-top: 14px;
    text-align: left;
    white-space: nowrap;
    font-size: 17px;
}


/* =========================================
   FOLLOW US
   ========================================= */

.instagram-link {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.icon-volgons {
    width: 66px;
    height: auto;
    margin: 0 auto 10px;
}

.follow-section h2 {
    margin: 0 0 10px;
    color: #405533;
    font-size: 21px;
    line-height: 1.2;
    font-weight: bold;
    white-space: nowrap;
}

.follow-section p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    white-space: nowrap;
}

.follow-section p a {
    color: #405533;
    text-decoration: none;
}

.follow-section p a:hover {
    text-decoration: underline;
}


/* =========================================
   SHOP IMAGE
   ========================================= */

.shop {
    width: 100%;
    height: auto;
    margin: 48px auto 0;
    border-radius: 18px;
}


/* =========================================
   FOOTER
   ========================================= */

footer {
    margin-top: 25px;
    color: #405533;
    font-size: 17px;
    line-height: 1.5;
    text-align: center;
}

.address {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.address .smallicon {
    margin-top: 2px;
}

.footer-message {
    margin-top: 18px;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) and (min-width: 701px) {
    .page {
        padding: 24px 24px 48px;
    }

    .three {
        grid-template-columns: 1.38fr 1.05fr 0.72fr;
        gap: 18px;
    }

    .vegetables img {
        height: 100px;
    }

    .icon-openingsuren {
        height: 50px;
        max-width: 220px;
    }

    .icon-contact {
        height: 50px;
        max-width: 185px;
    }

    .opening-hours {
        font-size: 16px;
    }

    .opening-hours div {
        grid-template-columns: 130px 140px;
    }

    .contact-info {
        font-size: 16px;
    }

    .vat {
        font-size: 16px;
    }

    .icon-volgons {
        width: 60px;
    }
}


/* =========================================
   MOBILE / PHONE
   ========================================= */

@media (max-width: 700px) {
    .page {
        padding: 22px 18px 40px;
    }

    .logo {
        width: 135px;
        margin-bottom: 14px;
    }

    h1 {
        font-size: 34px;
        line-height: 1.15;
    }

    .subtitle {
        font-size: 19px;
        line-height: 1.35;
    }

    .spacer {
        width: 85px;
        margin: 24px auto 40px;
    }

    .vegetables {
        gap: 2px;
        padding: 0 0 12px;
    }

    .vegetables img {
        width: 19%;
        height: 72px;
    }

    .three {
        display: flex;
        flex-direction: column;
        gap: 42px;
        width: 100%;
        margin-top: 40px;
    }

    .opening-section,
    .contact-section,
    .follow-section {
        width: 100%;
        text-align: center;
    }

    .icon-openingsuren {
        height: 64px;
        width: auto;
        max-width: 280px;
        margin: 0 auto 10px;
    }

    .icon-contact {
        height: 64px;
        width: auto;
        max-width: 225px;
        margin: 0 auto 10px;
    }

    .opening-hours {
        max-width: 360px;
        margin: 0 auto;
        font-size: 20px;
        line-height: 1.75;
        text-align: center;
    }

    .opening-hours div {
        grid-template-columns: 1fr 1fr;
        column-gap: 16px;
    }

    .opening-hours span:first-child {
        text-align: right;
    }

    .opening-hours span:last-child {
        text-align: left;
    }

    .contact-info {
        max-width: 360px;
        margin: 0 auto;
        font-size: 20px;
        text-align: left;
    }

    .contact-row {
        width: fit-content;
        margin: 0 auto 13px;
        grid-template-columns: 28px auto;
        column-gap: 10px;
    }

    .smallicon {
        width: 27px;
        height: 27px;
    }

    .vat {
        margin-top: 20px;
        text-align: center;
        font-size: 19px;
    }

    .icon-volgons {
        width: 58px;
        margin: 0 auto 10px;
    }

    .follow-section h2 {
        font-size: 26px;
        margin: 0 0 10px;
    }

    .follow-section p {
        font-size: 19px;
    }

    .shop {
        margin-top: 38px;
        border-radius: 14px;
    }

    footer {
        margin-top: 22px;
        font-size: 16px;
    }
}


/* =========================================
   SMALL PHONES
   ========================================= */

@media (max-width: 390px) {
    .page {
        padding-left: 14px;
        padding-right: 14px;
    }

    h1 {
        font-size: 31px;
    }

    .subtitle {
        font-size: 18px;
    }

    .vegetables img {
        height: 65px;
    }

    .icon-openingsuren {
        height: 58px;
        max-width: 250px;
    }

    .icon-contact {
        height: 58px;
        max-width: 205px;
    }

    .icon-volgons {
        width: 54px;
    }

    .opening-hours {
        font-size: 18px;
    }

    .contact-info {
        font-size: 18px;
    }

    .vat {
        font-size: 17px;
    }
}