/* MAIN */

/* Section hello */

#section-hello {
    height: calc(100vh - var(--header-height));
    margin-top: var(--header-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#section-hello h1 {
    color: #FDECED;
    font-size: 8rem;
    font-family: "Lavishly Yours", cursive;
    font-weight: 400;
    font-style: normal;
}

#section-hello p {
    line-height: 1.6;
    text-align: center;
}

#section-hello img {
    width: 800px;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border: 2px solid #FDCFB6;
}

/* Section presentation */

#section-presentation p {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-presentation-imgs {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.section-presentation-imgs img {
    width: 23%;
}

#section-presentation a {
    display: block;
    width: fit-content;
    padding: 10px 20px;
    margin: 0 auto;
    border: 2px solid #FDCFB6;
}

/* Section testimonies */

#section-testimonies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.testimony-box {
    display: block;
    flex-basis: 33%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

.testimony-box-header p {
    text-align: center;
    font-weight: 500;
}

.testimony-box-text {
    text-align: center;
}

#section-testimonies a {
    padding: 10px 20px;
    border: 2px solid #FDCFB6;
}

/* FOOTER */

footer {
    padding-bottom: 50px;
}

.footer-index-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-index-flex p {
    margin-bottom: 0;
    flex-basis: 200px;
}

.footer-socials {
    width: fit-content;
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.footer-socials-fb {
    width: 30px;
    height: 30px;
    background-image: url(../assets/icons/fb_fill_round_wh.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-socials-ig {
    width: 30px;
    height: 30px;
    background-image: url(../assets/icons/ig_fill_round_wh.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/* SCREENS */

@media screen and (max-width: 999px) {
    #section-hello img {
        width: 90%;
    }
}

@media screen and (max-width: 600px) {
    #section-hello h1 {
        font-size: 6rem;
        margin-top: -2rem;
    }

    #section-hello img {
        width: 100%;
        margin: 5rem auto;
    }

    #section-presentation p {
        width: 100%;
    }

    .section-presentation-imgs img {
        width: 48%;
    }

    .testimony-box {
        padding: 8px;
    }

    .footer-index-flex {
        flex-direction: column;
        justify-content: baseline;
        align-items: center;
    }

    .footer-index-flex p {
        flex-basis: 0;
    }

    .footer-index-flex :nth-child(1) {
        order: 3;
    }

    .footer-index-flex :nth-child(2) {
        order: 2;
    }

    .footer-index-flex :nth-child(3) {
        order: 1;
    }

    .footer-socials {
        margin: 15px auto;
    }
}