/* ------------------------------
   STYLE GLOBAL
--------------------------------*/
@font-face {
  font-family: 'Gotham-Bold';
  src: url('http://tegel.fr/font/Gotham-Font/Gotham-Bold.woff2') format('woff2'),
       url('http://tegel.fr/font/Gotham-Font/Gotham-Bold.woff') format('woff');
  /*src: url('/font/Gotham-Font/Gotham-Bold.ttf') format('truetype');*/
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


.menu {
    display: flex;
    justify-main-container: center;
    gap: 20px;
    background: #444;
    padding: 15px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
 

.bloc {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

/* ------------------------------
   DESKTOP (Windows)
   ≥ 1024px
--------------------------------*/
@media (min-width: 1024px) {
    .main-container {
        /*grid-template-columns: repeat(3, 1fr);*/
		width:100%;
    }
}

/* ------------------------------
   TABLETTE
   768px → 1023px
--------------------------------*/
@media (min-width: 768px) and (max-width: 1023px) {
    .main-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu {
        gap: 10px;
    }
}

/* ------------------------------
   MOBILE
   ≤ 767px
--------------------------------*/
@media (max-width: 767px) {
    .menu {
        flex-direction: column;
        text-align: center;
    }

    .main-container {
        grid-template-columns: 1fr;
    }

    .bloc {
        padding: 15px;
    }
}

html, body {
   
    height: 100%; margin: 0; padding: 0;
    direction: ltr;
    text-align: left;
    font-size: 18px;
	overflow-x:hidden;
}
body {
  display: flex;
  flex-direction: column;
  font-family: 'Gotham-Bold', Oswald, sans-serif;
  height: auto;
  min-height: 100vh;
  background: linear-gradient(120deg, #001f3f, #005f99, #001f3f);
}
/* TITRE PRINCIPAL */
h1 {
    font-size: clamp(32px, 4vw, 60px);
    font-weight: 700;
    color: #003A5D;
    margin: 0;
    line-height: 1.2;
}

/* SOUS-TITRE */
h2 {
    font-size: clamp(18px, 2.2vw, 30px);
    font-weight: 400;
    color: #007FA3;
    margin-top: 10px;
    line-height: 1.4;
}

/* Légère ombre optionnelle */
h1, h2 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);
}



p { font-size: 1.3rem; /* 16px */ }
.header-top {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* ✔️ correction */
    padding: 0 20px;
    background: linear-gradient(90deg, #023e8a, #0096c7, #48cae4); 
    border-bottom: 1px solid #e0e0e0;
    color: #ffffff;
    box-sizing: border-box; /* ✔️ empêche le débordement */
}

.logo { 
	font-family: 'Gotham-Bold',Gotham-Bold, sans-serif,Oswald; 
	font-size: 36px; /* très impactant */ 
	letter-spacing: 20px; /* espace entre lettres */ 
	color: white; font-weight: 700; margin-right: 30px; 
	/* espace entre le texte et les icônes */ } 
.icons {
	display: flex; gap: 15px; /* espace entre les icônes */ } 
.icons img { 
	width: 50px; height: 50px; object-fit: contain; } 
fieldset { border: 2px solid #4cc9f0; padding: 20px; border-radius: 8px; margin-bottom: 20px; background: #f9f9f9;}
legend { font-weight: bold; padding: 0 10px; color: #333; font-size: 1.2em; }

.main-container { 
	width: 100%;
	display: grid;
    gap: 20px;  
	padding-top: 0; padding-bottom: 0;
	margin: 0px auto; /* centre horizontalement */ 
	/*background: linear-gradient(120deg, #001f3f, #005f99, #001f3f);*/
	background-size: 400% 400%;
	animation: waveCircle 2s ease infinite;

	border-radius: 0px; /* optionnel, arrondit les angles */ 
	flex: 1; /* pousse le footer en bas */ 
	min-width: 0;overflow: visible;
	}

@keyframes waveCircle {
    0%   { background-position: 50% 50%; }
    50%  { background-position: 100% 0%; }
    100% { background-position: 50% 50%; }
}


.large_conteneur {
    width: 98%;
    margin: 0px auto;
    padding: 20px;
    background: #ffffff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 5px solid #023e8a;
    border-radius: 2px;
    box-sizing: border-box; /* 🔥 empêche le débordement */
}	

.footer { 
    /*background: #0096c7;*/
	
	background: linear-gradient(120deg, #001f3f, #005f99, #001f3f);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center; /* au lieu de justify-main-container */
    padding: 5px 20px;      /* on enlève height fixe */
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
   font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-col p {
	font-size: 0.95rem;
  line-height: 1.45;
  margin: 3px 0;
  line-height: 1.4;
  opacity: 0.85;
}

.footer-col {
  padding-right: 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a  {
  font-size: 0.95rem;
  opacity: 0.85;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-col ul li a:hover {
  color: white;
  opacity: 1;
}
@media (max-width: 767px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .footer-col {
    width: 100%;
    text-align: left; /* ou center si tu préfères */
  }
}

.wave-separator {
    width: 100%;
    height: 40px;
    background: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='120' height='40' viewBox='0 0 120 40'>\
<path d='M0 20 Q 30 0 60 20 T 120 20' fill='transparent' stroke='%23007FA3' stroke-width='2'/>\
</svg>") repeat-x;
    background-size: 120px 40px;
    margin: 40px 0;
}

.section-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #007FA3, transparent);
    margin: 50px 0;
}
