/* Couleurs personnalisées */
.bg-brand-primary {
    background-color: #e74a32;
  }
  .bg-brand-secondary {
    background-color: #232323;
  }
  .bg-brand-accent {
    background-color: #c69c63;
  }
  .text-brand-primary {
    color: #e74a32;
  }
  .text-brand-secondary {
    color: #232323;
  }
  .text-brand-accent {
    color: #c69c63;
  }
  .border-brand-primary {
    border-color: #e74a32;
  }
  
  /* Styles modernes */
  .hero-section {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .hero-overlay {
    background: rgba(35, 35, 35, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .card-hover {
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  :root {
    --primary: #e74a32;     /* Rouge du blason */
    --primary-dark: #c93d28; /* Rouge plus foncé pour hover */
    --secondary: #232323;   /* Noir pour contraste */
    --accent: #c69c63;      /* Doré des étoiles comme accent */
    --light: #ffffff;       /* Blanc pour le texte */
    --light-gray: #c6c2c3;  /* Gris clair pour fond subtil */
    --dark-accent: #554d40; /* Marron foncé pour détails */
  }

  .text-brand-primary svg {
  color: white;
}
.text-brand-primary path {
  stroke: white;
}

svg.text-brand-primary {
  color: white;
}
svg.text-brand-primary path {
  stroke: white;
}