body {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

.navbar {
  transition: background-color 0.3s ease;
}

.navbar-brand span {
  color: #d32f2f; /* Rouge identitaire */
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff5252; /* Rouge plus vif au survol */
}

.navbar .active {
  color: #ff9800 !important; /* Accent doré pour la section active */
}

.hero-section {
  background: url('images/hero.jpg') no-repeat center center/cover;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon-wrapper {
  background: linear-gradient(135deg, #ff5252, #ff9800);
  border-radius: 50%;
  padding: 20px;
  display: inline-block;
  color: white;
  transition: background 0.3s ease;
}

.service-card:hover .icon-wrapper {
  background: linear-gradient(135deg, #ff9800, #ff5252);
}

.highlight-bar {
  width: 50px;
  height: 4px;
  background: #d32f2f;
  margin: 15px auto 0;
  border-radius: 2px;
}
.hero-section .carousel-item {
  position: relative;
}

.hero-section .container {
  z-index: 10;
}

.hero-section .carousel-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* assombrit l’image pour lisibilité du texte */
}


h2 {
  font-weight: bold;
  color: #d32f2f;
}

.gallery-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

footer {
  font-size: 0.9rem;
}
