/* STRUCTURE GLOBALE (proche Afterburner) */
#site {
    max-width: 960px;
    margin: 0 auto;
}

/* HEADER */
#header {
    padding: 20px 0;
}

#header h1 {
    margin: 0;
    font-size: 28px;
}

/* LAYOUT 2 COLONNES */
#page {
    display: flex;
    align-items: flex-start;
}

/* MENU GAUCHE */
#sidebar {
    /* width: 220px; */
    width: 130px;
    padding: 20px 10px 20px 0;
}

/* MENU STYLE AFTERBURNER */
#sidebar ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

#sidebar ul.menu li {
    margin-bottom: 10px;
}

#sidebar ul.menu li a {
    display: block;
    padding: 6px 8px;
    text-decoration: none;
    font-weight: bold;
}

/* CONTENU CENTRAL */
#content {
    flex: 1;
    padding: 20px;
    font-size: 14px;
}

/* FOOTER */
#footer {
    margin-top: 30px;
    padding: 15px 0;
    font-size: 12px;
}

/* BANDEAU AFTERBURNER */
#logo {
    display: block;
   /* width: 1014px;*/
    /*height: 166px;*/
    width: 1014px;
    height: auto;
    min-height: 126px;
    margin: 0 auto;
    background: url("../images/bandeau_dec2025.png") no-repeat center top;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain; /* clé : pas de rognage */

}

#logo {
    background-size: cover;
}



/* ALIGNEMENT SIDEBAR SOUS LE BANDEAU */
#sidebar {
    margin-left: 0%;
}

/* BANDEAU FIXE */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #272727; /* important pour éviter transparence */
}




/* MENU VERTICAL FIXE */
#sidebar {
    position: fixed;
    top: 200px; /* hauteur du bandeau */
    z-index: 900;
    font-size: 13px;
}


/* CONTENU PRINCIPAL */
main {
    margin-top: 190px;   /* sous le bandeau */
    margin-left: 160px;  /* à droite du menu */
}


/* TITRE DES PAGES */
.page-title {
    font-size: 24px;
    color: #fff;
    margin: 0 0 5px 0;  /* ↓ réduit l’espace sous le titre */
    margin-top: 0;
    padding-top: 0;       /* sécurité */
    padding-bottom: 0px;
}


/* NETTOYAGE ESPACES JOOMLA AU DÉBUT DES ARTICLES */
#content hr:first-of-type {
    margin-top: 0px;
}

#content p:first-of-type {
    margin-top: 0;
}

.video-article {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    background: #000;
    border: 1px solid #444;
}


/* MENU HORIZONTAL AFTERBURNER */
#top-menu {
    background: #393939;
    position: fixed;
    top: 166px; /* juste sous le bandeau */
    left: 0;
    width: 100%;
    z-index: 999;
}

#top-menu ul {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    width: 1014px;
}

#top-menu li {
    position: relative;
}

#top-menu > ul > li > a {
    display: block;
    padding: 8px 12px;
    color: #ccc;
    font-weight: bold;
}

#top-menu a:hover {
    background: #0092D8;
    color: #fff;
}

/* SOUS-MENUS */
#top-menu li ul {
    display: none;
    position: absolute;
    background: #00557E; /* COULEUR DES SOUS-MENUS */
    min-width: 165px;
    top: 100%;
    left: 0;
    width: 165px;
    opacity: 1 !important;
    z-index: 2000;
}

#top-menu li:hover > ul {
    display: block;
}

#top-menu li ul li a {
    display: block;
    padding: 8px 10px;
    color: #fff;
    font-weight: normal;
    border-top: 1px solid #006B9F;
    background-color : #00557E;
}

/* SOUS-SOUS MENUS */
#top-menu li ul li ul {
    left: 100%;
    top: 0;
}



/* MENU HORIZONTAL */
#top-menu {
    position: fixed;
    top: 156px;              /* juste sous le bandeau */
    left: 0;
    width: 70.5%;
    height: 60px;
    background: #272727;
    z-index: 900;
    padding-left: 422px; 
}


/* TAILLE TEXTE MENU HORIZONTAL */
#top-menu a {
    font-size: 13px;   /* ajuste ici : 15px, 16px, 18px… */
}

/* CONTENEUR MENU */
#top-menu ul {
    margin: 0 auto;
    padding: 1000;
    list-style: none;
    display: flex;
    align-items: center;       /* ← CENTRAGE VERTICAL */
    height: 55px;              /* ← même hauteur */
    width: 1014px;
}

/* LIENS */
#top-menu > ul > li > a {
    display: flex;             /* ← clé */
    align-items: center;       /* ← centre le texte */
    height: 40px;
    padding: 0 12px;
    color: #www;
    font-weight: bold;
    /*background-color: #00557E;*/
}



main {
    margin-top: 200px;
    margin-left: 170px;
    position: relative;
    z-index: 	;
}

#top-menu li ul {
    display: none;
    position: absolute;
    background: #00557E; /* COULEUR DES SOUS-MENUS */
    min-width: 165px;
    top: 100%;
    left: 0;
    width: 165px;
    opacity: 1 !important;
    z-index: 2000;
}



.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery a img {
    width: 180px;
    height: auto;
    border: 1px solid #444;
    padding: 4px;
    background: #111;
    transition: transform 0.2s;
}

.gallery a img:hover {
    transform: scale(1.05);
    border-color: #0092D8;
}

#online-users {
    font-size: 12px;
    color: #bbb;
}