:root {
    --text: #ffffff;
    --background: #1F2663;
    --accent: #E76F0D;
}

/* HERO */

#hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 150px;
}

#hero__title {
    font-size: clamp(1.5rem, 10vw, 72px);
    font-weight: 600;
    margin-bottom: 10px;
}

#hero p {
    margin-bottom: 50px;
}

#hero a {
    background-color: var(--accent);
    padding: 10px 15px;
    border-radius: 8px;
}

#hero > img {
    height: 350px;
}

/* LOYALTY */

#loyalty {
    display: flex;
    flex-direction: column;
    margin-bottom: 150px;
}

#loyalty__title {
    font-weight: 600;
    font-size: clamp(1.5rem, 6vw, 36px);
    margin-bottom: 20px;
}

#loyalty__description {
    margin-bottom: 50px;
}

#loyalty__points {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

#loyalty__points > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loyalty__icon {
    font-size: 100px !important;
    margin-bottom: 30px;
}

/* extra */

#extra {
    margin-bottom: 150px;
    font-size: 18px;
}

#extra a {
    border: var(--accent) solid 1px;
    border-radius: 0.5rem;
    font-weight: bold;
    padding: 0.5rem;
}

#extra h3 {
    margin-bottom: 40px;
}

#extra__wellbeing, #extra__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#extra__wellbeing > div, #extra__info > div {
    text-align: center;
    flex: 0.5;
}

#extra__info {
    flex-direction: row-reverse;
}

#extra__wellbeing .extra__img {
    background-image: url("../../images/ruimte-zonnebank-sunbeauty-izegem-800x534.jpg");
}

#extra__info .extra__img {
    background-image: url("../../images/zonnebank-izegem-sunbeauty-800x533.jpg");
}

.extra__img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    flex: 0.5;
    height: 500px;
    width: 50%;
    transition: height 0.5s ease;
}

@media screen and (max-width: 768px) {
    #hero {
        gap: 50px;
        flex-direction: column;
    }
    #hero img {
        height: 240px;
    }
    #loyalty__points {
        flex-direction: column;
        gap: 30px;
    }
    #extra__wellbeing, #extra__info {
        display: block;
    }
    #extra__wellbeing div:last-of-type, #extra__info div:last-of-type{
        margin: 50px 0px;
    }
    .extra__img {
        width: 100%;
    }
}