/* BASE COMMUNE HTML */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

/* Plein écran */
html, body {
  height: 100%;
}

:root {
  --rose: #E61AA8;
  --rose-clair: #F395D7;
  --rose-fonce: #C11C84;
  --dore: #d4af37;
  --blanc: #ffffff;
  --texte: #5a4a4a;
  --rose-pale: #f5d7df;
  --noir: #000000;
}

/* Image de fond */
body {
  background-image: url("fondecran.jpg"); /* ton image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  color: white;
}

/* Header */
header {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  text-align: center;
}

h1{
	color: #f5d7df;
}

/* Main prend l’espace restant */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Section hero */
.hero {
  background: rgba(0, 0, 0, 0.55);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 700px;
}

/* Titres */
.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Boutons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/*BOUTON INACTIF*/
.hero-button {
  padding: 15px 30px;
  background-color: #f5d7df;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: transform 0.3s, background-color 0.3s;
}


/*CURSEUR SUR LE BOUTON*/
.hero-button:hover {
  transform: scale(1.05);
  background-color: #eac1cc;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 15px;
  color: #f5d7df;
}

/* RESERVE hero CSS*/

/* --- hero FORMULAIRE --- */
.hero {
  background: rgba(0, 0, 0, 0.55);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 700px;
}

.hero h2 {
  color: var(--rose-pale);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.hero p {
  color: var(--rose-pale);
  margin-bottom: 0.5rem;
}

.hero form {
  max-width: 500px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero label {
  color: var(--rose-pale);
  text-align: left;
  font-weight: 500;
}

.hero input,
.hero select {
  padding: 0.8rem;
  border: 1px solid #f1cfcf;
  border-radius: 10px;
  background-color: var(--rose-pale);
  color: var(--texte);
  font-family: inherit;
}

.hero button {
  background-color: var(--dore);
  color: var(--blanc);
  border: none;
  padding: 0.8rem;
  border-radius: 50px;
  cursor: pointer;
}

.hero button:hover {
  background-color: var(--rose-pale);
}

/* --- BOUTONS DU BAS --- */
.hero {
  text-align: center;
  padding: 2rem 1rem;
}

.hero-button {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.8rem 2rem;
  background-color: var(--rose-pale);
  border-radius: 50px;
  color: var(--noir);
  text-decoration: none;
  transition: transform 0.2s;
}

.hero-button:hover {
  transform: scale(1.05);
}