@font-face {
    font-family: "Gravesend";
    font-weight: 500;
    font-style: normal;
}


body {
    margin: 0;
    padding: 0;

    color: #283673;

    font-size: 12px;
    font-family: 'Bodoni 72';
}

h2, h3 {
    text-transform: uppercase;
    font-family: 'Gravesend';
    font-weight: 400;
}

h3 {
    font-family: 'Bodoni 72';
    letter-spacing: 2px;
}

.reader-only {
    clip: rect(1px,1px,1px,1px);
    clip-path: polygon(0 0,0 0,0 0);
    height: 1px;
    margin: 0;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

.main {
    display: grid;
    grid-template-columns: 10fr 8fr;
    grid-template-areas:
            "head image"
            "infos image";
}


.main-left-head {
    grid-area: head;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
}

.main-left-infos {
    grid-area: infos;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
}

.main-right {
    grid-area: image;
    display: flex;
    flex-grow: 1;

    justify-content: right;

    background: url("images/packaging.webp") no-repeat;
    background-size: cover;
}

.social-media {
    flex-direction: column;
    align-self: flex-end;
    align-items: center;
    justify-content: space-between;

    height: fit-content;
    margin: 2rem;

    color: white;
    text-transform: uppercase;
    font-size: 1rem;
    font-family: 'Gravesend';

}

.social-media-desktop {
    display: flex;
}

.social-media-mobile {
    display: none;
    color: #283673;
}

.social-link {
    text-decoration: none;
}

.social-icon {
    width: 40px;
    height: 40px;

    margin: 1rem;
}

.header {
    display: flex;
    justify-content: center;
}

.header > img {
    width: 80%;
}

.description {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-wrap: balance;

    max-width: 50%;

    text-align: center;
}

.collections-title {
    margin-top: 3rem;
}

.collections {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;


    margin-top: 1.5rem;

    text-align: center;
}

.collection {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;

    width: 33%;
    padding-left: 3rem;
    padding-right: 3rem;
}

.collection-img {
    width: 80px;
    height: 80px;
}

.collection-description {

}

.collection-1 {

}

.collection-2 {
    border: solid;
    border-width: 0 1px 0 1px;
    border-color: #283673;
}

.collection-3 {

}

.newsletter {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.cta {
    background: #283673;
    padding: 1rem 2rem 1rem 2rem;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Gravesend';
    border: 1px solid #283673;
    color: white;
}

.cta:hover {
    background-color: #283673;
    color: white;
    cursor: pointer;
}

.footer {
    margin-top: 4rem;


    display: flex;
    width: 100%;
    justify-content: center;

    display: none;
}

.footer > a {
    text-decoration: none;
    color: grey;
}

@media only screen and (max-width : 1000px) {
    .description {
        max-width: 75%;
    }

    .collections {
        flex-direction: column;
        align-items: center;

        margin-top: 0;
    }

    .collection {
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        align-items: center;

        width: 50%;
        padding: 2rem;
    }
    .collection-2 {
        border-width: 1px 0 1px 0;
    }

    .main {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
                "head"
                "image"
                "infos";
    }

    .main-right {
        height: 20rem;
        margin-top: 4rem;

        background-position-x: center;
        background-size: 28rem;
    }

    .social-media-desktop {
        display: none;
    }

    .social-media-mobile {
        display: flex;
    }

    .social-icon {
        width: 25px;
        height: 25px;
    }
}
