:root {
  --bg: #ffffff;
  --text-main: #555555;
  --text-bold: #1a1a1a;
  --accent: #7ccbc0;
  --light-gray: #fcfcfc;
  --border: #eeeeee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text-main);
  font-family: 'Manrope', sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHIE INSPIRÉE DU TEMPLATE */
h1, h2, h3 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  color: var(--text-bold);
  text-transform: uppercase;
  letter-spacing: 4px; /* Plus d'espace pour le côté luxe */
}

h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); margin-bottom: 2rem; }
h2 { 
  font-size: 1.8rem; 
  text-align: center; 
  margin-bottom: 4rem; 
  position: relative;
  padding-bottom: 15px;
}

/* Petite barre décorative sous les titres comme sur le template */
h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent);
}

/* LAYOUT GLOBAL */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5vw;
  text-align: center; /* Centre tout le texte par défaut */
}

section { padding: 12vh 0; }

/* HERO - Centrage total et élégance */
#hero {
  height: 90vh;
  background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('image.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content { width: 100%; }

.logo {
  max-width: 150px;
  margin-bottom: 3rem;
}

/* BOITES ET LISTES (Inspiration Minimaliste) */
.info-box {
  background: var(--light-gray);
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.info-box ul {
  display: inline-block; /* Pour centrer le bloc de la liste */
  text-align: left;      /* Mais garder le texte à gauche à l'intérieur */
  list-style: none;
}

.info-box li {
  margin: 1rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.info-box li::before {
  content: "—"; /* Tiret plus élégant que la puce ronde */
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* GRILLE DE TARIFS */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.price {
  font-size: 1.5rem;
  color: var(--text-bold);
  margin: 1rem 0;
  font-family: 'Cinzel', serif;
}

footer {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #999;
}