body {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    font-family: 'K2D', sans-serif;
    font-size: 15px;
    color: #151515;
    background: linear-gradient(rgba(245,245,245,0.97), rgba(245,245,245,0.97)), url("../images/dotted.jpg") center 40%;
    background-size: 100%;
}

a {
    color: #151515;
    text-decoration: none;
}

p {
    text-align: justify;
    line-height: 24px;
    padding: 0 40px;
}

li {
    list-style-type: none;
}



.fleche-retour-haut {
    position: fixed;
    bottom: 20px;
    right: 30px;
    opacity: 0.9;
    z-index: 100;
    width: 35px;
    height: 35px;
    cursor: pointer;
    filter: brightness(0%);
}




header {
    height: 100vh;
    overflow-y: hidden;
    text-align: center;
}

.background-header {
    width: 100%;
    filter: brightness(70%);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.fleche-header {
    width: 80px;
    height: 70px;
    position: absolute;
    z-index: 2;
    top: 70vh;
    left: 50%;
    transform: translatex(-50%);
    cursor: pointer;
}
.burger-bar {
    display: none;
}

nav {
    height: 230px;
    line-height: 230px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}
nav ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}
nav li {
    width: 20%;
}
nav a {
    display: block;
    cursor: pointer;
    color: #202020;
}

.sous-menu {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    display: none;
    position: relative;
    top: 1px;
    left: 0;
}
nav li:hover .sous-menu {
    display: block;
}
nav .sous-menu li {
    width: 100%;
    height: 100%;
    font-size: 16px;
    border-top: 4px solid transparent;
    height: 70px;
    line-height: 70px;
    border-top: 4px solid transparent;
}
nav .sous-menu a {
    background-color: whitesmoke;
}
nav .sous-menu a:hover {
    background-color: rgb(131, 182, 158);
}




.h1 {
    padding: 150px 0;
    padding-bottom: 100px;
    text-align: center;
}
.h1 img {
    width: 150px;
}

h1 {
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
    font-size: 33px;
    font-weight: 500;
    text-shadow: 0 0 1px #202020;
    color: rgb(115, 78, 51);
}





#main-accueil {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}


.evenement h2,
.nos-services h2,
.contact h2,
.maps h2 {
    padding: 60px 0;
    margin: 0;
    font-size: 24px;
    text-align: center;
    color: #202020;
    background-color: rgba(187,208,51,0.8);
    /* background-color: #91e8b4; */
    font-weight: 500;
}


/* #### RUBRIQUE GAUCHE #### */
.rubriques_gauche {
    background-color: #fff;
    margin-top: 100px;
}

.evenement p {
    margin: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    border-right: 1px solid #bbd033;
    background: whitesmoke;
}
.evenement h3 {
    text-align: center;
    padding: 15px 0;
    font-size: 17px;
}
.evenement div {
    border-right: 1px solid #bbd033;
    padding: 30px 0;
}

.inscription {
    text-align: center;
    font-size: 21px;
    background-color: #9ab4bb;
    padding: 20px 0;
}
.inscription a {
    color: whitesmoke;
}
.inscription .fa-envelope-square {
    color: whitesmoke;
    vertical-align: -1px;
    margin-right: 8px;
}
.inscription:hover {
    background-color: #65838b;
}




/* #### RUBRIQUE DROTE #### */
.a-la-une h2 {
    padding: 5px 0;
    margin-bottom: 0;
    font-size: 38px;
    font-weight: 500;
    word-spacing: 10px;
    height: 350px;
    line-height: 350px;
    text-align: center;
    color: whitesmoke;
    text-shadow: 0 0 5px #2c2c2c;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../images/golf3.jpg") center 60%;
    background-size: 100%;
    background-repeat: no-repeat;
}
.a-la-une p {
    margin: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: whitesmoke;
}

.nos-services ul {
    margin: 0 auto;
    padding: 20px 30px;
    background: #fff;
}
.nos-services li {
    padding: 10px 0;
}
.nos-services li::before {
    content: "◊";
    margin: 0 10px;
}
.nos-services a:hover {
    background-color: #bad4db;
    padding: 0 5px;
}

.img-service {
    text-align: right;
    height: 200px;
}
.img-service img {
    width: 100%;
}






/* #### PAGE CONTACT #### */
#main-contact {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #fff;
}

.contact {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}
.contact h2 {
    line-height: 740px;
    padding: 0 60px;
}

form {
    padding: 30px;
}
form p {
    margin: 20px 0;
}

label:not(fieldset label) {
    display: inline-block;
    width: 150px;
    vertical-align: top;
}

fieldset {
    border: none;
    width: 100%;
    margin-left: 25px;
}
fieldset input:nth-last-child(2) {
    margin-left: 20px;
}

input:not(fieldset input), select, textarea {
    width: 200px;
    padding: 10px;
    border: none;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
    background-color: #ededed;
    color: #151515;
}

select:focus {
    border: 1px solid #151515;
}

textarea {
    padding: 10px;
}

input[type=reset], input[type=submit] {
    width: auto;
    cursor: pointer;
    background-color: #bbd033;
    background: rgb(195, 160, 107);
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    border: 3px solid rgb(224, 188, 135);
    border-right: 3px solid rgb(170, 137, 89);
    border-bottom: 3px solid rgb(170, 137, 89);
    margin-top: 20px;
}
input[type=reset] {
    margin-right: 20px;
}
input[type=reset]:hover, input[type=submit]:hover {
    background-color: #a9c8d1;
    background: rgb(218, 182, 128);
    border: 3px solid rgb(249, 214, 162);
    border-right: 3px solid rgb(193, 157, 102);
    border-bottom: 3px solid rgb(193, 157, 102);
}
input[type=reset]:focus, input[type=submit]:focus {
    border: 1px solid rgb(193, 157, 102);
    box-shadow: inset 0 0 2px rgb(193, 157, 102);
}


.maps iframe {
    width: 500px;
}




footer {
    height: 500px;
    position: relative;
    padding: 20px 0;
    text-align: center;
    background-image: url("../images/golf2.jpg");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(125%);
    font-size: 14px;
}
footer p {
    text-align: left;
    line-height: 20px;
}









/* MISE EN PAGE GRANDS ECRANS */
@media screen and (min-width: 1600px) {
    body {
        width: 1500px;
    }
}


/* MISE EN PAGE AUTRES TAILLES ECRANS */
@media screen and (max-width: 1250px) {
    #main-contact {
        flex-flow: column nowrap;
        align-items: center;
    }
    .contact {
        display: flex;
        flex-flow: column nowrap;
    }
    .contact h2,
    .maps h2 {
        padding: 40px 0;
        line-height: 100%;
        width: 100%;
    }
}


@media screen and (max-width: 1000px) {
    header {
        overflow: hidden;
    }

    .background-header {
        width: unset;
        height: unset;
        min-width: 100%;
        height: 100%;
    }
    
    .h1 {
        padding: 80px 0;
    }
    h1 {
        font-size: 28px;
    }
    .h1 img {
        width: 130px;
    }
    
    #main-accueil {
        flex-flow: column nowrap;
    }
    
    .rubriques_gauche {
        margin-top: 0;
    }
    
    .evenement p,
    .evenement div {
        border-right: none;
    }
    .evenement h3 {
        font-size: 16px;
    }
    
    .evenement h2,
    .nos-services h2 {
        padding: 40px 0;
    }
    
    section.rubriques_droite {
        margin-top: -35px;
    }
    
    .inscription {
        padding: 30px 0;
        width: 50%;
        margin: 0 auto;
    }
    
    .nos-services ul {
        background-image: url("../images/golf4.jpg");
        background-size: 60%;
        background-repeat: no-repeat;
        background-position: 100% 20%;
        padding: 30px;
    }
    .img-service {
        display: none;
    }
    
    footer {
        height: 400px;
        background-size: cover;
        background-position: top;
    }
}


@media screen and (max-width: 710px) {
    h1 {
        font-size: 25px;
    }
    .h1 img {
        width: 115px;
    }
    
    .nos-services ul {
        background-size: 80%;
        background-position: 220% 0%;
    }
}


@media screen and (max-width: 650px) {
    .burger-bar {
        display: block;
        width: 80px;
        position: absolute;
        top: 10px;
        right: 30px;
        z-index: 11;
        filter: invert(100%);
    }
    .burger-bar-filter {
        filter: invert(50%);
    }
    
    nav {
        display: none;
        height: 100%;
        top: 80px;
    }
    nav ul {
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
    }
    nav li {
        width: 100%;
        height: 80px;
        line-height: 80px;
        border: 2px solid transparent;
    }
    
    nav .sous-menu li {
        height: 80px;
        line-height: 80px;
        position: relative;
        z-index: 10;
        font-size: 14px;
    }
    nav .sous-menu a {
        background-color: rgb(131, 182, 158);
    }
    nav .sous-menu a:hover {
        background-color: whitesmoke;
        border: 1px solid rgb(131, 182, 158);
    }
    
    .a-la-une h2 {
        height: 250px;
        line-height: 250px;
        background-size: cover;
        background-position: center;
    }
    
    .h1 {
        padding: 50px 0;
    }
    .inscription {
        width: 100%;
    }
    
    .nos-services ul {
        background-image: none;
        padding-left: 35%;
    }

    .maps iframe {
        max-width: 100%;
    }
    
}


@media screen and (max-width: 380px) {
    .nos-services ul {
        background-image: none;
        padding-left: 20px;
    }
    
}