body {
  font-family: 'Montserrat', sans-serif;
  background: #0d0d0d;
  color: white;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Couleurs personnalisées */
.text-highlight {
  color: #e63946 !important;
}

.bg-highlight {
  background-color: #e63946 !important;
}

/* Hero section */
.hero {
  background: url('../images/hero.webp') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}

.text-shadow {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
  color: white !important;
}

.btn-highlight {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
  color: #e63946;
}

/* Cards */
.card {
  background: #1a1a1a;
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: white;
}

.card:hover {
  background-color: #222;
  transform: translateY(-5px);
}

.card i {
  font-size: 3rem;
  color: #e63946;
  margin-bottom: 15px;
}

/* Navbar */
.navbar {
  background: #000 !important;
}

.navbar-brand {
  color: #e63946 !important;
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-link {
  color: white !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #e63946 !important;
}

/* Footer */
footer {
  background: #000;
  color: #aaa;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 3rem;
}
