@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Roboto, sans-serif;
    background-color: black;
    color: white;
    overflow: visible;
    font-size: 14px;
    position: center;
}
header {
  position: center;
  bottom: 0;
  width: 100%;
  font-family: Roboto, sans-serif;
  background: rgba(0,0,0,0.8);
  color: white;
  text-align: center;
  padding: 2px 0 2px;
  z-index: 100;
}
/* CONTENEUR GLOBAL */
.image-text-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  position: center;
}
.text-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* LIGNE D'IMAGES */
.images-row {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;   /* centre le groupe d’images */
  gap: 50px;                 /* écart de 50px entre les images */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.images-row img:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 5px rgba(0,0,0,0.4);
}

/* FIGURE */
.images-row figure {
  margin-left: center;
  text-align: center;
}

/* IMAGES */
.images-row img {
  width: 350px;
  height: auto;
  display: block;
}

/* LÉGENDES */
.images-row figcaption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #FBFAFA;
  font-style: italic;
}

/* TEXTE SOUS LES IMAGES */
.text-content {
  max-width: 1100px;
  line-height: 1.6;
}

.text-content p {
  margin-bottom: 1em;
}

.text-content ul {
  margin-left: 20px;
}

/* ========================= */
/* RESPONSIVE TABLETTE */
/* ========================= */
@media (max-width: 1024px) {
  .images-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================= */
/* RESPONSIVE MOBILE */
/* ========================= */
@media (max-width: 600px) {
  .images-row {
    grid-template-columns: 1fr;
  }

  .images-row figcaption {
    font-size: 0.85rem;
  }

  .text-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.video-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: auto;
  width: 100vw;
  height: 100vh;
}
.video-link {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.video-link:hover {
  transform: scale(1.02);
}

.video-link video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
 }   
.clear {
  clear: both;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  height: 0;
  width: 100%;
}
.m-top {
  margin-top: -7px;
}
.overflow.extra {
  overflow: visible;
}
.left-0 {
  margin-left: 0 !important;
}
.overflow {
    overflow: hidden;
    top: top;
    clip: rect(auto,auto,auto,auto);
    width: auto;
    z-index: auto;
    text-align: justify;
    vertical-align: top;
    font-family: "Roboto", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    font-size: 16px;
    letter-spacing: normal;
    word-spacing: normal;
}
.inner-1 {
    padding-right: 30px;
    text-align: justify;
}
.wrapper .img-indent .inner-1 {
    text-align: justify;
}
/*------ h1, h2, h3, h4, h5, h6 ------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: none;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  letter-spacing: -1px;
}
h1 {
  font-size: 70px;
  line-height: 74px;
}
header h1 {
  padding: 0;
  margin: 0;
}
h2 {
  font-size: 50px;
  line-height: 52px;
}
h3 {
    font-size: 30px;
    line-height: 34px;
    margin: 32px 0 15px;
    font-weight: normal;
    color: #23D0DF;
    text-align: center;
}
.content-extra h3 {
  margin: 42px 0 25px;
}
h4 {
  font-size: 48px;
  line-height: 50px;
  margin: 21px 0 20px;
}
h5 {
  font-size: 18px;
  color: #939393;
  font-weight: 600;
  letter-spacing: -1px;
}
p {
  position: center;
  padding-bottom: 25px;
  margin: 0;
}
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.8);
  color: white;
  text-align: center;
  padding: 1rem;
  z-index: 100;
}

.footer-links a {
  color: #63C18D;
  margin: 0 0.5rem;
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
    
}

.contact-form input,


.contact-form textarea {
  width: 90%;
  max-width: 400px;
  margin: 0.25rem 0;
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
  color: white;
}

.contact-form button {
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  border: none;
  border-radius: 5px;
  background-color: #09f;
  color: white;
  cursor: pointer;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 70px;
  width: 100%;
  background: #222;
  color: white;
  padding: 1rem;
  text-align: center;
  z-index: 200;
}

.cookie-banner button {
  background-color: #09f;
  border: none;
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
