@font-face {
  font-family: "biondi";
  src: url("./polices/Biondi_Regular.ttf");
}

@font-face {
  font-family: "mklatino";
  src: url("./polices/MkLatinoPlain.ttf");
}

:root {
  --zorange: #e8721b;
}

body {
    margin: 0;
    border: 0;
    padding: 0;
    background-color: #cf8018;
    background-image: url('./fond_biere_mousse.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    height: calc(var(--doc-height) - 0.01px);
    width: 100vw;
    color: #fff;
    text-shadow: 0.2vh 0.2vh #000;
    font-family: 'mklatino';
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-size: 5vh;
}

#content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 3.5vh;
    width: 100%;
    padding-bottom: 5vh;
    overflow: auto;
}

#Zlogo {
    height: 35vh;
    margin-top: 3vh;
    background: radial-gradient(#cf8018, transparent 60%);
}

h1 {
    font-size: 6vh;
    font-weight: normal;
    margin: 2vh;
    text-align: center;
    margin-left: 2vh;
    margin-right: 2vh;
    font-family: "biondi";
    color: var(--zorange);
}

P {
    margin: 1vh;
    text-align: center;
}

header p {
    margin: 0;
}

em {
    font-size: 5vh;
    margin-left: 2vh;
    margin-right: 2vh;
    font-style: normal;
    color: var(--zorange);
}

.rowDiv {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

a {
    text-decoration: none;
}

.linkBtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 10vh;
    width: 40vh;
    background-color: var(--zorange);
    border: solid 0.5vh #fff;
    border-radius: 6vh;
    font-size: 2.8vh;
    font-weight: bold;
    color: #fff;
    text-shadow: none;
}

.linkBtn:hover {
    background-color: #fff;
    color: var(--zorange);
    box-shadow: 0 0 3vh yellow;
}

.contactInfos {
    background: linear-gradient(to bottom right, grey, #ffffffdd 20%, #ffffffdd 80%, grey);
    padding: 2vh;
    padding-left: 5vh;
    padding-right: 5vh;
    border: ridge var(--zorange) 0.7vh;
    color: #000;
    text-shadow: none;
}

.contactInfos a {
    color: var(--zorange);
    text-shadow: 0.2vh 0.2vh #000;
}

.contactInfos a:hover {
    color: yellow;
}

.footer {
    margin: 3vh;
    font-size: 3.5vh;
}

.warning {
    font-size: 2vh;
    font-family: "Calibri";
    color: yellow;
    margin: 0;
    background-color: #000;
    padding-left: 2vh;
    padding-right: 2vh;
    text-align: center;
    position: absolute;
    bottom: 0;
}

/* media queries pour adapter l'affichage de la page aux smartphones */
@media only all and (max-width:641px) {

    #content {
        font-size: 2.6vh;
        justify-content: flex-start;
        padding-bottom: 10vh;
    }

    #Zlogo {
        height: 20vh;
        margin: 0;
        background: radial-gradient(#cf8018, transparent 75%);
    }

    h1 {
        font-size: 3.5vh;
        margin-bottom: 0;
    }

    em {
        font-size: 3.2vh;
    }

    #slogan {
        line-height: 3.2vh;
        margin: 0;
    }

    .rowDiv {
        flex-direction: column;
        justify-content: flex-start;
    }

    .contactInfos {
        order: 0;
        padding: 1vh;
    }

    .link {
        order: 1;
    }

    .linkBtn {
        margin: 1vh;
        width: 80vw;
        border-radius: 0;
        font-weight: normal;
        height: 8vh;
    }

    .footer {
        margin: 1vh;
        font-size: 2.8vh;
    }

}