/* ===== Couleurs & Typographie ===== */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth;
}

/* ===== Navigation ===== */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* ===== Sections générales ===== */
section {
  padding: 5rem 0;
}

/* Titres de section */
section h2 {
  font-weight: 600;
}

/* Texte secondaire */
.text-muted {
  color: #6c757d !important;
}

/* ===== Hero ===== */
.hero-section {
  background: #e6f0fd;
  color: #fff;
  padding: 6rem 1rem;
  position: relative;
  top: 2rem;
}

.navbar a img {
  height: 3rem;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-section .btn-primary {
  background-color: #198754;
  border: none;
}

/* ===== Boutons ===== */
.btn-primary:hover {
  background-color: #157347;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ===== Features ===== */
.feature-card {
  border: 1px solid #eaeaea;
  border-radius: .5rem;
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

/* ===== Section Captures ===== */
.screenshot-img {
  max-width: 100%;
  border: 1px solid #eaeaea;
  border-radius: .25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* ===== Carrousel Partenaires ===== */
.logos-carousel {
  display: flex;
  gap: 1.5rem;
  animation: slide 25s linear infinite;
}

.logos-carousel img {
  opacity: 0.75;
  transition: opacity 0.3s ease;
  height: 80px;
  object-fit: contain;
}

.logos-carousel img:hover {
  opacity: 1;
}

.hero-img {
  width: 100%;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== Témoignages ===== */
.testimonial-card {
  background-color: #f8f9fa;
  border-radius: .5rem;
  padding: 2rem;
}

/* ===== Footer ===== */
.footer {
  background-color: #f8f9fa;
  color: #6c757d;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}
.text-color-g {
  color: #1b466d;
}

.bi {
  color: #198754;
  display: inline-block;
  vertical-align: -.125em;
  fill: rgb(7 65 122);
  font-size: 3rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.partner {
  width: 8rem;
}

._row {
  height: 12rem;
  vertical-align: middle;
  align-items: center;
}

.w-20 {
  width: 20% !important;
}

.carousel-item.active {
  display: flex !important;
  flex-direction: column;
  align-items: center;
}

.carousel-caption {
  position: relative;
  padding-top: 3rem;
  right: 0;
  bottom: 1.25rem;
  left: 0;
  padding-bottom: 0;
}

.carousel-control-next,
.carousel-control-prev {
  filter: invert(1) grayscale(100);
}

.carousel-indicators {
  filter: invert(1) grayscale(100);
}

.carrousel-content {
  width: 100%;
  height: 400px;
  position: relative;
  top: 0;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.carrousel-content#_1 {
  background-image: url(../images/capt1.png);
}
.carrousel-content#_2 {
  background-image: url(../images/capt2.png);
}
.carrousel-content#_3 {
  background-image: url(../images/capt3.png);
}
.carrousel-content#_4 {
  background-image: url(../images/capt4.png);
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }

  section {
    padding: 3rem 0;
  }
}
@media (max-width: 576px) {
  .col.hero-text {
    flex: none;
}
.navbar {
  padding-bottom: 0;
  padding-top: 0;
}
}
