/**
 * Style des éléments de structure principaux définis dans le layout
 * 
 * @copyright (c) ontheway.ch
 * @author Joëlle Galloni et Pascal Favre
 */

/**
 * En-tête contenant le logo et le menu
 */
/* Liens dans l'en-tête */
#main-header a {
    color: inherit;
    text-decoration: none;
}

/**
 * En-tête
 */
#header {
    width: 100%;
    text-align: center;
    padding: 20px;
    background: #FAFAFA;
}
/* Logo */
#header #logo-container {
    font-family: "MoonFlower", "Open Sans", Arial;
    font-weight: 900;
    color: #3A3A3A;
    font-size: 40px;
    left: 50%;
    transform: translateX(-50%);
}
#header img {
    height: 30px;
}
/* Titre */
#header #title {
    font-size: 1.6em;
    margin-left: 10px;
    text-shadow: 1px 1px 2px #BABABA;
}

/**
 * Contenu principal du site
 */
#main-container,
#footer {
    max-width: 1200px;
    margin: 0 auto;
    overflow: auto;
}
#main-container {
    position: relative;
    padding: 10px;
}

/**
 * Footer
 */
#main-footer {
    background: #3A3A3A;
    color: #9A9A9A;
    padding: 40px 10px 10px 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

#main-footer h3 {
    color: white;
}
#main-footer .contact-icons a {
    text-decoration: none;
    color: #3A3A3A;
    padding-right: 5px;
}
#main-footer .contact-icons span {
    width: 30px;
    height: 30px;
    background: #9A9A9A;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    padding: 0 !important;
}
#main-footer .contact-icons a:hover span {
    background: #F89406;
}