@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
@font-face {
  font-family: 'Gobold-Bold';
  src: url('../assets/Gobold-Bold.woff') format('woff');
}
body {
  background-color: black; /* Set background color to black */
  color: white; /* Ensure text color is white */
  margin: 0;
  padding: 0;
  height: 100%;
}


main > section {
  margin-bottom: 250px;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.main-container {
  width: 100%;
  overflow-x: hidden;
}

header, section, footer {
  width: 100%;
  box-sizing: border-box;
}

section, img, video {
  max-width: 100%;
  box-sizing: border-box;
}


* {
  margin: 0;
  padding: 0;
}

:root {
  --text-color: white;
  --green1-color: #55B039;
  --green2-color: #3EA935;
  --green3-color: #2B672D;
  --green4-color: #17361C;
}
body {
  color: var(--text-color);
}
a {
  text-decoration: none;
  color: var(--text-color);
}
ul,
li {
  list-style: none;
}
h1 {
  color: var(--text-color);
  font-family: "Lilita One", sans-serif;
  font-size: clamp(28px, 4vw, 56px); /* Ajuste la taille entre 28px et 56px en fonction de la largeur de l'écran */
  font-weight: bold;
  text-align: center;
}

h2 {
  color: var(--text-color);
  font-size: clamp(22px, 3vw, 36px); /* Ajuste la taille entre 22px et 36px en fonction de la largeur de l'écran */
}

p {
  font-size: clamp(16px, 2vw, 18px); /* Ajuste la taille entre 16px et 18px en fonction de la largeur de l'écran */
}
input {
  border: none;
}

body {
  background: black;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}


@media only screen and (max-width: 768px) {
  #mute-btn,
  #fullscreen-btn {
    display: none; /* Masquer les conteneurs des boutons */
  }
}

.main-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  height: 100vh;
  text-align: left;
}

.main-content h1,
.main-content h2 {
  margin: 0;
  padding: 0 10px;
  color: white;
  position: absolute;
  left: 10%;
}

.main-content h1 {
  top: 60%;
}

.main-content h2 {
  top: 70%;
  font-weight: 100;
}

#button-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.fullscreen-icon-container,
.mute-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--green1-color);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin: 0 10px;
}

.fullscreen-icon,
.mute-icon {
  font-size: 2.8vw;
  color: white;
  transition: transform 0.3s ease;
}

.fullscreen-icon-container:hover .fullscreen-icon,
.mute-icon-container:hover .mute-icon {
  transform: scale(1.1);
}

.fullscreen-icon-container:hover,
.mute-icon-container:hover {
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  0% {
      transform: scale(1);
      background-color: var(--green1-color);
  }
  100% {
      transform: scale(1.2);
      background-color: var(--green4-color);
  }
}

/* Responsive Styles */

/* Tablet */
@media only screen and (max-width: 1024px) {
  .main-content h1 {
      top: 65%;
  }

  .main-content h2 {
      top: 75%;
  }
}

/* Mobile */
@media only screen and (max-width: 768px) {
  .main-content h1,
  .main-content h2 {
      left: 5%;
      padding: 0 5px;
  }

  .main-content h1 {
      top: 70%;
  }

  .main-content h2 {
      top: 80%;
  }

  .fullscreen-icon,
  .mute-icon {
      font-size: 5vw;
  }

  .fullscreen-icon-container,
  .mute-icon-container {
      width: 50px;
      height: 50px;
  }
}

#slider{
  margin-top: 125px;
  margin-bottom: 75px;
}





.star {
  position: absolute;
  background-color: var(--green1-color);
  width: 1.8px;
  height: 1.8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}





.info {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.info img {
  height: auto;
  width: 30%;
  margin: 0 10%;
}


.info p {
  text-align: left;
  color: var(--text-color);
  font-size: clamp(16px, 2vw, 20px); /* Ajuste la taille entre 16px et 20px en fonction de la largeur de l'écran */
  margin: 0 10%; /* Utilise des marges flexibles pour un meilleur rendu */
}


@media (max-width: 768px) {
  .info {
      flex-direction: column; /* Changement de direction pour empiler les éléments verticalement */
  }

  .info img {
      width: 50%; /* Réduction de la largeur de l'image */
      margin: 5% 0; /* Ajout d'une marge supérieure et inférieure pour l'image */
  }
}

.cible {
    padding: 80px;
}

.column {
    border-radius: 10px;
    background-color: rgba(23, 54, 28, 0.6);
    padding: 20px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    height: 100%;
}

.column img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.column p {
    color: white;
    margin-bottom: 20px;
    transition: font-size 0.5s ease;
}

.column h2 {
    color: #55B039;
    font-family: "Lilita One", sans-serif;
    font-weight: bold;
    transition: font-size 0.5s ease;
}

@media (min-width: 992px) {
  .column:hover {
    box-shadow: 0 0 40px 10px #55B039;
  }
}

@media (max-width: 991.98px) {
    .carousel {
        display: block;
    }

    .column {
      height: 401px;
        margin-bottom: 20px;
    }
    .column img {
      width: 100px;
      height: 100px;
    }
}
.carousel-control-prev {
  left: -40px;
}

.carousel-control-next {
	right: -40px
}

















.contact {
  text-align: center;
  margin-top: 50px;
}

.contact p {
  margin-top: 25px;
}

.contact a {
  background-color: #55B039; /* Change la couleur de fond du bouton */
  border-color: #55B039; /* Change la couleur de la bordure du bouton */
}

.contact a:hover {
  background-color: #3E7C25; /* Change la couleur de fond du bouton au survol */
  border-color: #3E7C25; /* Change la couleur de la bordure du bouton au survol */
}

@media (max-width: 767.98px) {
  .contact {
      margin-top: 20px;
  }
}











.confiance {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.confiance h1 {
  margin-bottom: 50px;
}

#slider {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

#slide {
  transition: opacity 0.5s ease;
  max-height: 150px;
  max-width: 300px;
  height: auto;
  width: auto;
}

#precedent,
#suivant {
  cursor: pointer;
  transition: opacity 0.3s ease;
  position: absolute;
  font-size: 40px;
  color: #3EA935;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

#precedent:hover,
#suivant:hover {
  opacity: 0.5;
}

#precedent {
  left: 0;
}

#suivant {
  right: 0;
}

@keyframes slideToLeft {
  0% {
      transform: translateX(0);
      opacity: 1;
  }
  100% {
      transform: translateX(-100%);
      opacity: 0;
  }
}

@keyframes slideToRight {
  0% {
      transform: translateX(100%);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}

.slideToLeft {
  animation: slideToLeft 2s forwards;
}

.slideToRight {
  animation: slideToRight 2s forwards;
}

@keyframes slideOutToRight {
  0% {
      transform: translateX(0);
      opacity: 1;
  }
  100% {
      transform: translateX(100%);
      opacity: 0;
  }
}

@keyframes slideInFromLeft {
  0% {
      transform: translateX(-100%);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}

.slideOutToRight {
  animation: slideOutToRight 2s forwards;
}

.slideInFromLeft {
  animation: slideInFromLeft 2s forwards;
}


@media only screen and (max-width: 768px) {
  #slide {
    max-height: 125px;
    max-width: 250px;
    height: auto;
    width: auto;
  }
}


