body {
  font-family: Arial, sans-serif;
}

h1, h2, h3 {
  font-weight: 600;
}
/* Hero section version bandeau */
.hero {
  background: url('/assets/images/background.jpg') no-repeat center center/cover;
  height: 400px; /* hauteur fixe au lieu de 100vh */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: white;
}

.hero h1, .hero p {
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

/* Logo */
.logo {
  height: 60px;
  width: auto;
}

/* Animation fade-in */
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cartes animées */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Harmonisation des cartes services */
.card-body {
  display: flex;
  flex-direction: column;
}
.card-text {
  flex: 1 1 auto; /* force le texte à s’étirer */
}

/* Fond global sombre */
body {
  background-color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
}

/* Zone centrale */
.main-container {
  background-color: #ffffff;
  max-width: 1200px;   /* largeur fixe pour grand écran */
  margin: 0 auto;      /* centré horizontalement */
  padding: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3); /* effet flottant */
  flex: 1;
  width: 100%;
}

/* Footer */
.footer {
  background-color: #0d6efd;
  position: relative;
  width: 100%;
  bottom: 0;
}

/* Logo dans la page À propos */
.about-header img {
  max-height: 100px;
}
/* Animation d'apparition douce au scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.divider-gradient {
  border: none;
  height: 3px;
  width: 50%;
  margin: 40px auto;
  background: linear-gradient(90deg, transparent 0%, #0d6efd 20%, #3a8dfd 80%, transparent 100%);
  border-radius: 2px;
  opacity: 0.9;
}
/* Offre PME mise en avant */
.offer-pme {
  background-color: #f8f9fa;
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offer-pme:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.offer-pme h2 {
  font-weight: 600;
}
.offer-pme ul li {
  color: #333;
  margin: 6px 0;
}

/* Animation d’apparition douce (réutilise ta .animate-fade) */
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}
/* Cartes de prix */
.pricing-card {
  background-color: #ffffff;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.pricing-card .price {
  font-weight: 600;
  color: #0d6efd;
}
.pricing-card ul li {
  margin-bottom: 6px;
}

/* Cartes de contact */
.contact-card {
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Icônes Bootstrap (si tu veux les vraies icônes LinkedIn/Facebook) */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");


