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

body {
  background-color: #111111;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;

}

/* Container principal */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Texte général */
p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 20px;
}

/* Intranet */
.intranet {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.intranet-img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;

}

/* Carousel */
.carousel-container {
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  width: 95%;
  max-width: 1000px;
  height: 500px;
  background-color: #282828;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
}

.carousel-text {
  text-align: center;
  font-size: 18px;
  padding: 15px;
  max-width: 800px;
}

/* Ajustement de l'affichage du carousel */
.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-item {
  width: 60%;
  height: 70%;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  cursor: pointer;
  position: absolute;
  transition: transform 0.5s, opacity 0.5s;

}

.carousel-item.left {
  transform: translateX(-60%) scale(0.8);
  opacity: 0.5;
}

.carousel-item.right {
  transform: translateX(60%) scale(0.8);
  opacity: 0.5;
}

.carousel-item.center {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 10;
}

/* Dots Navigation */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #444;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dots .dot.active {
  background-color: #49D13C;
}

/* Responsive Design */
@media (max-width: 768px) {
  p {
    font-size: 16px;
  }

  .intranet-img {
    max-width: 90%;
  }

  .carousel-container {
    height: 400px;
  }

  .carousel-item {
    width: 80%;
    height: 60%;
  }

  .carousel-item.left {
    transform: translateX(-70%) scale(0.7);
  }

  .carousel-item.right {
    transform: translateX(70%) scale(0.7);
  }
}

@media (max-width: 480px) {
  p {
    font-size: 14px;
  }

  .carousel-container {
    height: 320px;
  }

  .carousel-item {
    width: 90%;
    height: 55%;
  }

  .carousel-item.left,
  .carousel-item.right {
    transform: translateX(-85%) scale(0.6);
  }

  .carousel-item.right {
    transform: translateX(85%) scale(0.6);
  }
}
.hidden {
  display: none !important;
}
.iframe-container {
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.iframe-container h3 {
  padding: 15px;
  background-color: #222222;
  margin: 0;
  border-bottom: 1px solid #ddd;
}

iframe {
  border: none;
  display: block;
}
.reports-link-section {
  text-align: center;
  padding: 30px 0;
  background-color: #111111;
  border-radius: 10px;
  margin: 30px 0;
  border: 2px solid #49D13C;
}

.reports-link-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.reports-text {
  font-size: 18px;
  font-weight: 500;
  color: #f1f1f1;
}

.reports-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #49D13C;
  color: #111111;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;

}

.reports-btn:hover {
  background-color: #3eaf34;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.reports-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
footer {
  padding: 10px;
  background-color: #222222;
  color: white;
  position:relative;
  bottom: 0;
  width: 100%;
  height:51px ;
}
footer p {
  margin-top:-15px;
  margin-left: -5px;
  text-align: left;
}
