/* Couleurs principales - bleu professionnel et doré subtil pour une image corporate */
:root {
  --primary-color: #000000;      /* Bleu professionnel */
  --secondary-color: #c8a45e;    /* Doré subtil */
  --dark-bg: #ffffff;            /* Fond sombre */
  --light-text: #f5f5f5;         /* Texte clair */
  --dark-text: #333333;          /* Texte foncé */
  --neutral-accent: #e6e6e6;     /* Accent neutre */
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--light-text);
}

.primary-color-background {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.secondary-color-background {
  background-color: var(--secondary-color);

}

section {
  padding: 4em 2em;
  margin: 0;
  border-radius: 0;
}

h2 {
  color: white;
  font-size: 2.25em;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1em;
}

.logo-width {
  width: 20rem;
}

.half-size {
  width: 50%;
  height: auto;
}

a {
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

a:hover {
  transform: scale(1.02);
}

a.primary-btn {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 0.75em 1.5em;
  border-radius: 3px;
}

a.primary-btn:hover {
  background-color: var(--secondary-color);

}

.card {
  background-color: white;
  padding: 1.5em;
  border: 1px solid var(--neutral-accent);
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-in {
  animation: slideIn 0.5s ease-out;
}

/* Effet doré simplifié */
.subtle-highlight {
  color: var(--secondary-color);
}

footer {
  background-color: var(--dark-bg);
  color: #999;
  text-align: center;
  padding: 2em;
}

footer p {
  margin: 0.5em 0;
}

footer a {
  color: var(--secondary-color);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.half-size {
  max-width: 1rem;
}

/* Remplacé par un effet plus sobre */
.glitch-letter {
  color: var(--secondary-color);
  font-weight: bold;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.8em;
  }

  .half-size {
    width: 100%;
  }

  a.primary-btn {
    padding: 0.5em 1em;
    font-size: 0.9em;
  }
  
  .logo-width {
    width: 15rem;
  }
}

#cta-button {
  padding: 0.875rem 1.5rem;
  font-size: 1.125rem;
  border-radius: 3px;
  background-color: var(--primary-color);
  color: var(--light-text);
  font-weight: bold;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

#cta-button:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#cta-button:disabled {
  background-color: #e0e0e0;
  color: #a0a0a0;
  cursor: not-allowed;
  box-shadow: none;
}

#contact {
  background: linear-gradient(to right, #f8f9fa, #e9ecef, #f8f9fa);
  padding: 4em 0;
  text-align: center;
}

/* Style professionnel pour les sections de service */
#services .border {
  border-color: #e0e0e0 !important;
  transition: all 0.3s ease;
}

#services .border:hover {
  border-color: var(--primary-color) !important;
  background-color: rgba(26, 75, 140, 0.05);
  transform: translateY(-5px);
}

/* Sections alternatives avec fond légèrement différent pour meilleure lisibilité */
section:nth-child(even) {
  background-color: #f8f9fa;
}

section:nth-child(even) h2 {
  color: var(--primary-color);
}

/* Header avec fond plus professionnel */
header {
  background-color: rgba(0, 0, 0, 0.7);
}

header .bg-black {
  background-color: rgba(255, 255, 255, 0.9) !important;
  border-radius: 5px;
}

/* Icônes plus professionnelles */
.fas {
  color: var(--secondary-color);
}

/* Style des témoignages */
#testimonials .bg-black {
  background-color: white;
  color: var(--dark-text);
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}