:root {
  --brand-primary: #E3097E;    /* rose vif */
  --brand-secondary: #FF7AC4;  /* rose clair */
  --brand-yellow: #FFD900;     /* jaune Carambar */
  --brand-dark: #2a2a2a;
  --muted: #6b6b6b;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

/* GLOBAL */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--brand-yellow);
  color: var(--brand-dark);
}

/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 10px;
  background: white;
  border-bottom: 2px solid var(--brand-primary);
  position: sticky;
  top: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brand-dark);
}
.mark {
  width: 35px;
  height: 35px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 12px;
}
.title { font-weight: 700; }
.subtitle { font-size: 13px; color: var(--muted); }
nav {
  flex: 1;
}
nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  align-items: center;
}
nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  background: var(--brand-secondary);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: background 0.3s;
  white-space: nowrap;
  font-size: 15px;
}
nav a:hover {
  background: var(--brand-primary);
}


/* SECTIONS */
.section {
  padding: 40px 8vw;
  background: white;
  margin: 20px auto;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  text-align: center;
}
.section h1, .section h2 {
  margin-top: 0;
  color: var(--brand-primary);
}

/* --- LIEN - VOIR PLUS DE LOTS --- */
.lien-lots {
  display: inline-block;
  margin: 20px auto 30px;
  font-weight: 600;
  color: white;
  background: var(--brand-primary);
  padding: 12px 25px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.3s;
}
.lien-lots:hover {
  background: var(--brand-dark);
}

/* FORMULAIRE PRINCIPAL */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
label {
  font-weight: 500;
}
input, textarea, select, button {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
}
fieldset {
  border: 2px solid var(--brand-secondary);
  border-radius: var(--radius);
  padding: 15px;
}
legend {
  color: var(--brand-primary);
  font-weight: bold;
}
button {
  background: var(--brand-primary);
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: var(--radius);
  padding: 12px;
  transition: background 0.3s;
}
button:hover {
  background: var(--brand-dark);
}

/* --- SECTION RÉCLAMATION --- */
#reclamation {
  background: var(--brand-yellow);
  padding: 50px 8vw;
  margin: 0;
  border-radius: 0;
  text-align: center;
}
#reclamation h2 {
  color: var(--brand-primary);
  margin-bottom: 10px;
}
#reclamation p {
  color: var(--brand-dark);
  margin-bottom: 25px;
}
#reclamation form {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 25px 30px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

/* --- BOUTONS PRINCIPAUX & RETOUR --- */
.cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--brand-primary);
  color: white;
  border-radius: var(--radius);
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}
.cta-button:hover {
  background: var(--brand-dark);
}

/* --- ZONE RETOUR SITE PRINCIPAL --- */
.retour-zone {
  background: white;
  text-align: center;
  padding: 50px 0;
}

/* LOTS (page lots.html) */
.lots-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.lot {
  background: var(--brand-secondary);
  color: white;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.lot:hover {
  transform: translateY(-5px);
}
.note {
  margin-top: 15px;
  font-style: italic;
  color: var(--brand-dark);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: white;
  border-top: 2px solid var(--brand-primary);
}

/* === PAGE D’ACCUEIL === */

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 8vw;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: white;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  flex-wrap: wrap;
  gap: 40px;
}

.hero .left {
  flex: 1 1 350px;
  max-width: 600px;
}

.hero .left h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.hero .left span {
  color: var(--brand-yellow);
}

.hero .left p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero .right img {
  width: 320px;
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.hero .right img:hover {
  transform: scale(1.05);
}

/* SECTIONS D’ACCUEIL (marques / contact) */
#marques {
  background: white;
}
#marques h2 {
  color: var(--brand-primary);
}

#contact {
  background: var(--brand-yellow);
}
#contact h2 {
  color: var(--brand-primary);
}
#contact p {
  font-size: 1.1rem;
  color: var(--brand-dark);
}
#contact a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: bold;
}
#contact a:hover {
  text-decoration: underline;
}

/* Adaptation responsive */
@media (max-width: 800px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero .left, .hero .right {
    max-width: 100%;
  }
}

/* Supprime les puces et numéros dans les sections */
.section ul,
.section ol {
  list-style: none;     /* enlève les puces et numéros */
  padding-left: 0;      /* enlève le retrait par défaut */
  margin: 0;            /* harmonise les marges */
  text-align: center;   /* garde le texte centré */
}

.section li {
  margin: 6px 0;        /* espace régulier entre les lignes */
}

/* --- AJOUT : STYLE POUR LE SCRIPT "CARAMBAR EN VILLE" --- */
#concept, #deroulement, #recompenses {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 30px 20px;
  margin: 20px auto;
  max-width: 900px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

#concept h2, #deroulement h2, #recompenses h2 {
  color: #E3097E;
  border-left: 6px solid var(--brand-yellow);
  padding-left: 12px;
  margin-bottom: 15px;
}

#deroulement article {
  background: #fff0f5; /* rose très clair */
  padding: 15px 20px;
  border-left: 5px solid var(--brand-primary);
  border-radius: var(--radius);
  margin: 15px 0;
  text-align: left;
}

#deroulement ul li, #recompenses ul li {
  text-align: left;
  margin-bottom: 10px;
  padding-left: 12px;
  position: relative;
}

/* --- ONGLETS DES MOIS --- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  background: white;
  padding: 10px 0;
  border-bottom: 2px solid var(--brand-primary);
  margin-bottom: 30px;
}

.tabs a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  background: var(--brand-secondary);
  color: white;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.tabs a:hover {
  background: var(--brand-primary);
  color: var(--brand-yellow);
}

.tabs a.active {
  background: var(--brand-primary);
  color: var(--brand-yellow);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Adaptation responsive pour les onglets */
@media (max-width: 600px) {
  .tabs {
    flex-direction: column;
    gap: 8px;
  }
}


.carousel-container {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px 10px;
  background: #FF7AC4;   /* fond rose clair */
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-behavior: smooth;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: #E3097E;   /* rose vif */
  border-radius: 10px;
}

.carousel-track::-webkit-scrollbar-track {
  background: #ffd90033; /* jaune clair transparent */
  border-radius: 10px;
}

.carousel-slide img {
  width: 180px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#image {
  width: 200px;
  height: auto;
  margin-right: 25px;
  margin-left: 25px;
}