/* =========================================
   CHOLET SERVICES — STYLE GLOBAL
========================================= */

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
  color: #222;
  line-height: 1.6;
}

/* Liens & médias */
a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Conteneur générique */
.cs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Titres globaux */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
}

/* Boutons génériques */
.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

/* Messages globaux */
.cs-alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 600;
}

.cs-alert-success {
  background: #e8f8ee;
  color: #1f7a3b;
}

.cs-alert-error {
  background: #fdecea;
  color: #c0392b;
}

/* Helpers */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none !important; }
