:root {
    --blanc: #ffffff;
    --gold: #f9b233;
    --black: #000;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body,
html {
    position: relative;
    width: 100%;
    font-size: 16px;
    overflow-x: hidden !important;
}
html.disable-scroll {
    overflow-y: hidden;
}
body {
    font-family: "Montserrat", sans-serif;
    background-color: var(--black);
}

header {
    display: flex;
    padding-top: 20px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    max-width: 60%;
    margin: 0 auto;
}
.infos {
    display: none;
}
.photos{
    position: relative;
}
.photos p {
    position: absolute;
    top:40%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: .8em;
    font-weight: bold;
    background-color: rgb(0, 0, 0,.65);
    padding: 0 2px;
}
img {
    max-width: 100%;
}
.politique {
    height: 200px;
}
header .logo img {
    height: auto;
}
h1 {
    color: var(--blanc);
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 2rem;
}
h2 {
    color: var(--gold);
}
p {
    color: var(--gold);
    margin: 20px 0;
}

a {
    color: var(--gold);
    text-decoration: none;
    display: block;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

.container {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}
.title {
    margin-top: -1.5em;
    width: 60%;
    max-width: 500px;
    z-index: 2;
    position: relative;
}
.contenu {
    text-align: center;
    max-width: 90%;
    margin: 30px auto 0 auto;
    line-height: 1.4em;
}
.contenu--politique {
    text-align: left;
    margin: 30px auto;
    padding-bottom: 50px;
}

.footer-link {
    max-width: 80%;
    margin: 40px auto;
    font-size: 14px;
    display: flex;
    gap: 10px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

@media only screen and (min-width: 768px) {
    .footer-link {
        flex-direction: row;
        gap: 50px;
    }

}

@media only screen and (min-width: 1024px) {

    header .logo img {
        width: 60%;
        max-width: 900px;
        height: auto;
    }
    .infos {
        display: flex;
        flex-direction: column;
        text-align: right;
        margin-bottom: 5rem;
    }

    .photos p {
        font-size: 2.5em;
        top:50%;
        padding: 0 15px;
    }
    .title {
        margin-top: -70px;
        width: 60%;
        max-width: 500px;
    }
    .photos {
        margin-top: -1.5rem;
    }

    .photos img {
        width: 100%;
        height: 600px;
    }
    .contenu {
        text-align: center;
        max-width: 80%;
        margin: 30px auto 0 auto;
        line-height: 1.4em;
    }
}
@media only screen and (min-width: 1440px) {


    .photos {
        margin-top: -2.5rem;
    }

}
