@import url('https://fonts.googleapis.com/css?family=Advent+Pro|Dancing+Script|Alata|Courgette|Cookie|Pacifico|Great+Vibes|Lobster|Rubik+Broken+Fax|Kalam&display=swap');

body {
    font-family: 'Arial', sans-serif;
    padding: 0;
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

h2 {
    text-align: center;
    font-size: 2em;
}

a {
    text-decoration: none;
    color: inherit;
}

/*=======================================================================================
=                                       HEADER                                          =
========================================================================================*/

/*-----------------  Logo  ------------------*/

.logo {
    font-family: 'Cookie', cursive;
    font-weight: bold;
    font-size: 2.2em;
    /* margin-top: 10px; */
    padding-left: 10px;
}

/*-----------------  Menu  ------------------*/

nav {
    /* height: 75px;  */
    /* line-height: 75px; */
    /* overflow: hidden; */
    /* position: fixed;
    top: 0; */
    background-color: antiquewhite;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* padding: 0px 10px; */
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    padding: 10px 10px 10px 10px;
    font-size: 25px;
}

nav ul li:hover {
    background: darkseagreen;
    transition: .5s;
}

nav ul li a {
    display: block;
    padding: 20px 25px;
}

/*-----------------  Sous-Menu  ------------------*/

nav ul li ul {
    position: absolute;
    display: none;
    background-color: rgb(194, 126, 38);
    box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.1);
    border: 3px solid #ccc;
    margin-left: -10px;
    z-index: 3;
}

nav ul li:hover ul {
    display: block;
}

nav ul li ul li {
    line-height: 1;
    padding: 10px 20px;
}

nav ul li ul li a {
    padding: 10px 0px;
}

.fa {
    padding-left: 5px;
}

/*=======================================================================================
=                                       CONTENU                                         =
========================================================================================*/

/*----------  Important : peut-etre utilisé pour differents sites  ----------*/

.page-container {
    padding: 0 15px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

/*-----------------  Accueil  ------------------*/

.image-principale {
    background: url(../images/image-principale.jpg) no-repeat fixed 50% 50%;
    background-size: cover;
    margin: 0;
}

h1 {
    text-align: center;
    font-size: 3em;
}

/*=============================================
=                Création site                =
=============================================*/


.section-creation-site {
    overflow: hidden;
    background-color: #FFEBCD;
    padding: 10px 0 30px 0;
}

.section-creation-site h2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 2.2em;
}

.section-creation-site p {
    text-align: center;
    padding: 0px 0px 0px 10px;
    font-size: 1.2em;
    font-weight: bold;
}

/*=============================================
=                  Contact                    =
=============================================*/

.contact {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url(../images/contact.jpg) center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 40%;
    height: 470px;
    color: white;
    text-shadow: 1px 3px 2px black;
}

.contact h3 {
    font-size: 1.6em;
    text-align: center;
    font-family: 'Alata';
}

.contact a {
    font-size: 3em;
    border-radius: 50px;
    padding: 20px 35px;
    background-color: #87CEEB;
}

/*=============================================
=                   Footer                    =
=============================================*/

.footer-contenu {
    background-color: #FFEFD5;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-colonne h4 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
}

.footer-colonne h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-colonne ul li a {
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
    padding: 2px;
}

.footer-colonne ul li a:hover {
    opacity: 0.7;
    padding-left: 8px;
}

.footer-copy {
    display: flex;
    background-color: #FFEFD5;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: -10px;
    border-top-style: groove;
}

.footer-copy h3 {
    font-size: 1em;
}

/* .footer-colonne .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-colonne .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
} */

/* responsive
@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
} */