* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: #f7f5f4;
  color: #210c0c;
}

/* Header */
/* HEADER - Logo GROS + Centrage VERTICAL FORCÉ */
.site-header {
  background: #374151;
  box-shadow: 0 4px 25px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 4px solid #374151;
  height: 120px; /* Hauteur augmentée pour gros logo */
  display: flex;
  align-items: center; /* FORCE centrage vertical global */
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center; /* FORCE centrage */
  width: 100%;
  height: 100%;
}

.logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.logo img {
  height: 90px !important; /* LOGO PLUS GROS */
  width: auto !important;
  display: block !important;
  transition: transform 0.3s ease;
  padding-left: 3rem;
}

.logo a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.logo a:hover img {
  transform: scale(1.08);
}

/* Nav COLLÉE À DROITE */
.site-header ul {
  display: flex !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  align-items: center !important; /* CENTRE VERTICAL NAV */
  justify-content: flex-end !important;
  flex-shrink: 0 !important;
  height: 100%;
}

.site-header li {
  display: flex;
  align-items: center;
  margin: 0 !important;
}

.site-header li a {
  display: flex !important;
  align-items: center !important; /* CENTRE TEXTE */
  padding: 1rem 1.75rem; /* Padding augmenté pour header plus haut */
  color: white;
  text-decoration: none;
  font-weight: 600; /* Plus gras */
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  white-space: nowrap;
  height: fit-content;
}

.site-header li a:hover {
  color: #ffffff;
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.site-header li a.active {
  color: #ffffff;
  background: #000000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}


/* Corps de la page */




.legal {
  text-align: center;
  padding: 20px 20px;
}

/* Titre */
.legal-title {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}

/* Ligne + point central */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 0px;
  padding-bottom : 0px;
}

.divider .line {
  display: block;
  width: 35%;
  max-width: 400px;
  height: 1px;
  background-color: #2b1515;
}

.divider .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2b1515;
}


/* presentation de l'asso */

.presentation-legal {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0px 0px;
  padding-bottom : 0px;
  margin-bottom : 0px;
}


.presentation-legal p {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 16px;
}

.presentation-legal h3 {
	margin-top: 15px;
	margin-bottom: 15px;
}




/* footer de la page */


.site-footer {
  background: #374151;
  color: #ffffff;
  padding: 50px 20px;
  margin-top: 80px;
  border-top: 1px solid #333;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #0077ff;
}

.social-icons {
  display: flex;
  gap: 15px;
  background : #374151;
}

.icon-link {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  background: transparent !important;
  image-rendering: optimizeQuality;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-link:hover {
  border-color: #0077ff;
  color: #0077ff;
}
	