/* Rubik'Sorgues - Style sobre et moderne */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #2980b9;
  --accent-color: #f39c12;
  --background-color: #f8f9fa;
  --text-color: #2d3436;
  --light-gray: #dfe6e9;
  --font-stack: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-stack);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  padding: 20px;
}

header {
  background-color: var(--primary-color);
  color: white;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

nav {
  background-color: var(--secondary-color);
  padding: 10px 0;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}

nav a:hover {
  color: var(--accent-color);
}

main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  text-align: center;
}

section {
  margin-bottom: 30px;
}

h2 {
  color: var(--secondary-color);
  margin-bottom: 1rem/*10px;*/
}

h3 {
  /* font-weight: 420;
  margin-top: 1%;
  margin-bottom: 1%; */
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* block { */
  /* font-weight: 400; */
  /* margin-top: 1rem; */
  /* margin-bottom: 1rem; */
/* } */
p {
  font-size: 20px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  /* text-align: center; */
}




/* Espacement par défaut pour les paragraphes */
/* p { */
  /* margin: 0;  Pas d'espacement par défaut entre les paragraphes */
  /* line-height: 1.2;  Hauteur de ligne standard */
/* } */

/* Classe sans espacement (si tu veux des paragraphes plus serrés) */
/* .no-spacing { */
  /* display: block; */
  /* margin-bottom: 0;  Pas de marge en bas */
/* } */
li, ns, .no-spacing, .ns {
  display: block;
  margin-bottom: 0;
}
.no-break {
  word-wrap: break-word;        /* Permet de couper les mots si nécessaire */
  overflow-wrap: break-word;    /* Une autre manière d'assurer le retour à la ligne */
  display: inline;              /* Assure que le texte est en ligne */
}
nb {
  display: block;
  word-wrap: break-word;        /* Permet de couper les mots si nécessaire */
  overflow-wrap: break-word;    /* Une autre manière d'assurer le retour à la ligne */
  display: inline;
}

/* Classe avec un espacement supplémentaire */
.extra-spacing {
  margin-top: 2rem;  /* Espacement plus large au-dessus */
  margin-bottom: 2rem;  /* Espacement plus large en dessous */
}

/* Style pour l'alerte */
.alert {
  color: red;
  font-size: 20px;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  padding-left: 30px;  /* Espace pour l'icône */
  position: relative;
  display: inline-flex;  /* Assure que l'alerte et l'icône sont sur la même ligne */
  align-items: center;  /* Aligne verticalement l'icône avec le texte */
}

/* Ajouter une icône d'attention avant le texte */
.alert::before {
  content: "\f071";  /* Code pour l'icône Font Awesome "exclamation triangle" */
  font-family: "Font Awesome 5 Free";  /* Spécifie la font des icônes */
  font-weight: 900;  /* Nécessaire pour afficher correctement l'icône */
  font-size: 24px;  /* Taille de l'icône */
  margin-right: 10px;  /* Espace entre l'icône et le texte */
}

ul {
  list-style-type: square;  /* Change la puce en carré */
  /* margin */
  margin-bottom: 1rem;
}

ol {
  list-style-type: upper-roman;  /* Utilise des chiffres romains majuscules */
  margin-top: 0%;
}

/* .list-title { */
  /* font-weight: bold; */
  /* font-size: 1.2em; */
  /* margin-bottom: 10px; */
/*  */
/* } */




footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid var(--light-gray);
  margin-top: 40px;
}

/* Boutons */
.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background-color: var(--accent-color);
}


/* CSS de la timeline */
.timeline {
    border-left: 3px solid #3366cc;
    padding-left: 1.5em;
    margin: 2em 0;
}

.event {
    margin-bottom: 1em;
    position: relative;
}

.event::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0.3em;
    width: 14px;
    height: 14px;
    background-color: #3366cc;
    border-radius: 50%;
}

.date {
    font-weight: bold;
    color: #222;
}

.desc a {
    font-weight: bold;
    text-decoration: none;
    color: #3366cc;
}




/* associations */
ul {
    list-style-type: disc;
    padding-left: 1.5em;
}

ul li {
    margin-bottom: 0.5em;
}

a {
    color: #3366cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}



/* Général */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

header {
    background-color: #3366cc;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 2.5em;
}

nav {
    background-color: #333;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.2em;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

section p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 20px;
    font-size: 1.2em;
}

ul li a {
    font-weight: bold;
    color: #3366cc;
    text-decoration: none;
}

ul li a:hover {
    text-decoration: underline;
}

/* Style des images */
ul li img {
    max-width: 150px;
    height: auto;
    display: block;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 1em;
    margin-top: 40px;
}

footer a {
    color: #3366cc;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}