body {
  font-family: 'Inter', sans-serif;
}

/* LOGO */
.logo {
  height: 45px;
}

/* TITRES */
.title, .section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.subtitle {
  font-family: 'Poppins', sans-serif;
}

/* NAV */
.navbar {
  backdrop-filter: blur(8px);
}

.navbar .nav-link {
  color: white;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #54A245;
}

.navbar .nav-link.active {
  color: #54A245;
}
/* HERO */
.hero {
  background: linear-gradient(135deg, #0d1117, #1f2937);
  padding: 120px 20px;
}

/* HERO CAROUSEL */
.hero-carousel {
  position: relative;
}

.carousel-item img {
  height: 90vh;
  object-fit: cover;
  filter: brightness(0.5);
}

/* TEXTE SUR IMAGE */
.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}

.carousel-caption h1 {
  font-size: 42px;
}

.carousel-caption p {
  font-size: 18px;
}

/* CARDS */
.card {
  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: 0.3s;
}

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

/* COULEURS */
.card-blue { border-top: 5px solid #267F97; }
.card-cyan { border-top: 5px solid #5BC1D5; }
.card-green { border-top: 5px solid #54A245; }
.card-lime { border-top: 5px solid #A7CB49; }

/* CONTACT */
.contact-banner {
  width: 100%;
  overflow: hidden;
  background-color: #198754;
  padding: 10px 0;
  white-space: nowrap;
}

.contact-scroll {
  display: inline-flex;
  width: max-content;
  animation: defilement 25s linear infinite;
}

.contact-scroll span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  padding-right: 80px;
}

@keyframes defilement {

  from {
    transform: translateX(0);
  }

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

}

/* FOOTER */
footer {
  background: #0d1117;
  color: white;
  text-align: center;
  padding: 20px;
}

.bi {
  margin-right: 6px;
}