@charset 'UTF-8';

/******************************************/
/* FOND ET TEXTE PRINCIPAL                 */
/******************************************/
body {
    background-color: #000000; /* fond noir */
    color: #f5f5f5;            /* texte clair */
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/******************************************/
/* TITRES H1, H2, H3                      */
/******************************************/
h1, h2, h3 {
    color: #ffffff; /* titres blancs */
    margin: 0.5em 0;
}

h1 {
    font-size: 2.5rem; /* grand, responsive */
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/******************************************/
/* PARAGRAPHES                             */
/******************************************/
p {
    color: #f0f0f0; /* texte clair */
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1em;
}

/******************************************/
/* LIENS                                   */
/******************************************/
a {
    color: #ffcc00;
    text-decoration: none;
}

a:hover {
    color: #1e90ff;
}

/******************************************/
/* MENU                                    */
/******************************************/
#menu ul {
    display: inline-flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0 auto;
    list-style: none;
}

#menu ul li a {
    font-size: 1.2rem;
    color: #eeeeee !important;
    font-weight: 600;
    padding: 8px 15px;
}

#menu ul li a:hover {
    color: #ffffff !important;
}

#menu li.active a {
    color: #eeeeee !important;
}

#menu {
    text-align: center;
    margin-top: 10px;
}

/******************************************/
/* IMAGES RESPONSIVES                       */
/******************************************/
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/******************************************/
/* ICÔNES FONT AWESOME                     */
/******************************************/
@font-face {
    font-family: 'FontAwesome';
    src: url('fonts/fontawesome-webfont.eot?v=3.0.1');
    src: url('fonts/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'),
         url('fonts/fontawesome-webfont.woff?v=3.0.1') format('woff'),
         url('fonts/fontawesome-webfont.ttf?v=3.0.1') format('truetype'),
         url('fonts/fontawesome-webfont.svg#FontAwesome') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Font-Awesome-Social';
    src: url('fonts/fontawesome-social-webfont.eot');
    src: url('fonts/fontawesome-social-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/fontawesome-social-webfont.woff') format('woff'),
         url('fonts/fontawesome-social-webfont.ttf') format('truetype'),
         url('fonts/fontawesome-social-webfont.svg#Font-Awesome-More') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* toutes les icônes restent inchangées */
/* ... ici tu peux coller toutes les définitions d'icônes FontAwesome et Font-Awesome-Social ... */

/******************************************/
/* FOOTER                                   */
/******************************************/
/* CENTRER LES ICONES DU FOOTER */
#copyright {
    text-align: center !important; /* force le centrage */
    background-color: #000;        /* fond noir si nécessaire */
    padding: 20px 0;
}

#copyright p {
    margin: 10px 0;                /* espace vertical entre paragraphes */
}

#copyright a {
    display: inline-block !important; /* permet le centrage */
    margin: 0 10px;                  /* espacement horizontal */
    vertical-align: middle;
}

#copyright a img {
    display: inline-block;
    max-width: 100px;                /* taille responsive max */
    height: auto;
}

/******************************************/
/* RESPONSIVE FONT SIZING                   */
/******************************************/
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.3rem; }
    p  { font-size: 1rem; }
    #menu ul li a { font-size: 1rem; padding: 6px 10px; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    p  { font-size: 0.95rem; }
    #menu ul li a { font-size: 0.95rem; padding: 5px 8px; }
}