@import url('https://fonts.googleapis.com/css2?family=Mea+Culpa&family=Pixelify+Sans:wght@400..700&display=swap');
@import url('https://fonts.cdnfonts.com/css/aniron');
@import url('https://db.onlinewebfonts.com/c/3bb770c62052335c46f0c6c379b9ae9c?family=Onciale+PhF');
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-rounded/css/uicons-regular-rounded.css');
@import url('https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@700&family=Grenze:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Mea+Culpa&family=Pixelify+Sans:wght@400..700&display=swap');
@import url(https://db.onlinewebfonts.com/c/3bb770c62052335c46f0c6c379b9ae9c?family=Onciale+PhF);
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');


html {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background: url('../img/main_background.jpeg') repeat;
    background-size: cover;
}

.page_content {
    width: 100%;
    height: fit-content;
}

.entete-commun {
    z-index: 1;
    padding-top: 70px;

    .circle_accueil {
        position: absolute;
        top: -580px;
        left: 50%;
        transform: translateX(-50%);
        width: 750px;
        height: 750px;
        z-index: 0;
        animation: rotate 15s linear infinite;
    }


    nav {
        display: flex;
        justify-content: space-between;
        padding: 0 50px;
        width: 100%;
        box-sizing: border-box;
        z-index: 1;
        position: relative;

        div {
            display: flex;
            align-items: center;
            gap: 100px;

            a {
                font-size: 2.2em;
                transition: 0.4s ease;
                cursor: pointer;
                color: black;
                text-decoration: none;

                &:hover {
                    color: var(--rose);
                }
            }
        }
    }
}




/*
------------------------------------------------------------------------------------------------------------------------
FOOTER
------------------------------------------------------------------------------------------------------------------------
 */

footer {
    width: 100%;
    min-height: 450px;
    background: url('../img/background_2.png') repeat;
    background-size: cover;
    position: relative;
    padding: 80px 50px 20px 50px;
    margin-top: 100px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);

    .icons-credit {
        color: white;
        font-size: 1.2em;

        a {
            color: white;
            transition: 0.4s ease;

            &:hover {
                color: var(--rose);
            }
        }
    }

    .links {
        display: flex;
        flex-direction: row;
        gap: 20px;

        a {
            height: 50px;
            width: 50px;
            border-radius: 50%;

            img {
                width: 100%;
                height: 100%;
            }

            transition: 0.4s ease;
            cursor: pointer;

            &:hover {
                background-color: var(--rose);
            }
        }
    }

    .foot, .label {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        font-size: 1.2em;
        color: white;
        width: 100%;
        box-sizing: border-box;
        padding: 0 50px;
    }

    .foot {
        justify-content: space-around;

        a {
            font-size: 1.5em;
            transition: 0.4s ease;
            color: white;
            text-decoration: none;

            &:hover {
                color: var(--rose);
            }
        }
    }

    .label {
        a {
            transition: 0.4s ease;
            text-decoration: underline;
            color: white;

            &:hover {
                color: var(--rose);
            }
        }
    }
}








/*
------------------------------------------------------------------------------------------------------------------------
ANIMATIONS
------------------------------------------------------------------------------------------------------------------------
 */


@keyframes rotate {
    from {
        transform: translateX(-50%) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}
