@charset "utf-8";

/* --------------------------------------------------
   IMPORT GOOGLE FONTS
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@300;400;500&display=swap');

/* --------------------------------------------------
   GLOBAL BODY
-------------------------------------------------- */
body {
    background: #1A2F37;
    color: #1A2F37; /* readable light text */
    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

/* --------------------------------------------------
   CONTENT AREA SPACING
-------------------------------------------------- */
#template_contenu {
    padding: 20px;
}

/* --------------------------------------------------
   TEMPLATE COLORS
-------------------------------------------------- */
.template_color {
    color: #E76F51; /* main accent */
}

.template_border_color {
    border-color: #E76F51;
}

.template_backgroundcolor {
    background-color: #1A2F37;
    color: #E76F51;
}

/* --------------------------------------------------
   TITLES
-------------------------------------------------- */
.titre {
    text-transform: uppercase;
    color: #E76F51;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Accent bar next to titles */
.titre::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 16px;
    background: #E76F51;
    margin-right: 8px;
    vertical-align: middle;
}

.formcontent .titre {
    text-transform: none;
    color: inherit;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}

/* --------------------------------------------------
   LINKS
-------------------------------------------------- */
a {
    color: #E76F51;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------
   MENU
-------------------------------------------------- */
.menu_niveau_1_on {
    background-color: #E76F51;
    color: #1A2F37;
    font-weight: bold;
}

.menu_niveau_1:hover {
    background-color: inherit;
    color: #1A2F37;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
#template_header {
    color: #E76F51;
}

#template_header a {
    color: #E76F51;
}

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
input[type=submit],
button {
    color: #1A2F37;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

input[type=submit]:hover,
button:hover {
    background-color: #cf5f45;
}

/* --------------------------------------------------
   BANNER (full width)
-------------------------------------------------- */
#template_header img {
    width: 100%;
    height: auto;
    display: block;
}

/* Thin accent line under banner */
#template_header {
    border-bottom: 4px solid #E76F51;
}

/* --------------------------------------------------
   MOBILE RESPONSIVENESS
-------------------------------------------------- */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .titre {
        font-size: 18px;
    }

    #template_contenu {
        padding: 10px;
    }
}