/* ================================
   KICK ASSISTANT — CSS PERSONNALISÉ
   Couleurs : Navy #143C8C | Rose #C8508C
   ================================ */

/* TYPOGRAPHIE GÉNÉRALE */
body, p, li, td {
  font-family: Arial, Helvetica, sans-serif !important;
  color: #333;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: Georgia, serif !important;
  color: #143C8C;
}

a {
  color: #C8508C;
}

a:hover {
  color: #a83070;
}

/* HERO - classe .ka-hero */
.ka-hero {
  background: #143C8C;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.ka-hero h1 {
  color: #E8A0C0;
  font-size: 32px;
  margin-bottom: 15px;
}

.ka-hero p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 25px;
}

/* BANDEAU ROSE - classe .ka-bandeau */
.ka-bandeau {
  background: #C8508C;
  padding: 20px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 15px;
}

/* SECTION - classe .ka-section */
.ka-section {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.ka-section-grey {
  background: #f5f5f5;
  padding: 40px 20px;
}

.ka-section-navy {
  background: #143C8C;
  padding: 40px 20px;
  color: white;
}

.ka-section-navy h2, .ka-section-navy h3 {
  color: white;
}

.ka-section-navy p, .ka-section-navy li {
  color: rgba(255,255,255,0.85);
}

.ka-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* TITRES DE SECTION */
.ka-titre {
  font-size: 24px;
  color: #143C8C;
  border-bottom: 3px solid #C8508C;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.ka-titre-white {
  font-size: 24px;
  color: white;
  border-bottom: 3px solid #C8508C;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

/* BOUTONS */
.ka-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #C8508C;
  color: white !important;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  margin: 5px;
}

.ka-btn:hover {
  background: #a83070;
  color: white !important;
}

.ka-btn-outline {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: white !important;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  border: 2px solid white;
  margin: 5px;
}

.ka-btn-navy {
  display: inline-block;
  padding: 12px 28px;
  background: #143C8C;
  color: white !important;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  margin: 5px;
}

.ka-btn-white {
  display: inline-block;
  padding: 14px 40px;
  background: white;
  color: #C8508C !important;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}

/* TARIF BOX */
.ka-tarif {
  border: 2px solid #C8508C;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}

.ka-tarif h3 {
  color: #143C8C;
  font-size: 20px;
  margin-bottom: 8px;
}

.ka-prix {
  font-size: 36px;
  font-weight: bold;
  color: #C8508C;
  font-family: Georgia, serif !important;
}

/* INFO BOX */
.ka-info {
  background: #f5f5f5;
  border-left: 4px solid #C8508C;
  padding: 15px 20px;
  margin: 15px 0;
  border-radius: 0 8px 8px 0;
  font-size: 15px;
}

/* CTA FINAL */
.ka-cta {
  background: #C8508C;
  padding: 40px 20px;
  text-align: center;
  color: white;
}

.ka-cta h2 {
  color: white;
  font-size: 26px;
  margin-bottom: 12px;
}

.ka-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 25px;
}

/* HIGHLIGHT ROSE */
.ka-rose { color: #E8A0C0; }
.ka-bold-rose { color: #C8508C; font-weight: bold; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .ka-hero h1 { font-size: 24px; }
  .ka-section { padding: 30px 15px; }
  .ka-prix { font-size: 28px; }
}