body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fafafa;
  color: #222;
  line-height: 1.6;
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: #254834;
  border-bottom: 1px solid #ddd;
}

.logo {
  height: 70px;
}

.btn-reserve {
  font-family: 'Amatic SC',handwriting,sans-serif;
  padding: 10px 24px;
  font-size: 0.95rem;
  text-decoration: none;
  background-color: #fff;
  color: #254834;
  border-radius: 4px;
}

.btn-reserve:hover {
  opacity: 0.9;
}

/* ===== SECTIONS ===== */
section:not(.hero) {
  margin: 0 auto;
  padding: 50px 20px;
  text-align: justify;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro p {
  font-size: 1.1rem;
  width: 70%;
  margin: 0 auto;
  color: #2a2a2a;
  font-family: 'Arial', Helvetica;
  line-height: 1.65em;
}

/* ===== MENU ===== */
.menu-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
  border: 1px solid #ddd;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  color: #fff;
  background-color: #254834;
}
/* ===== HERO SECTION ===== */
/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-image: url("salle.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  align-items: center;        /* centre verticalement le contenu */
  justify-content: center;    /* centre horizontalement le contenu */
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between; /* blocs gauche / droite */
  gap: 40px;
  width: 90%;               /* limite l'étirement horizontal du texte */
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* voile noir */
  z-index: 1;
}


.hero-block {
  width: 50%;
  font-size: 1.1rem;
}

.hero h3 {
  margin-top: 0;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero p {
  margin: 5px 0;
}
.hero-logo {
  width: 100%;
  text-align: center;
  margin-bottom: 40px; /* espace entre le logo et les blocs horaires/adresse */
  z-index: 2;
}

.hero-logo-img {
  max-width: 350px; /* taille du logo, à adapter */
  height: auto;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  header {
    padding: 15px 20px;
  }

  .logo {
    height: 40px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-block {
    width: 100%;
  }

  .hero-block:last-child {
    text-align: center !important;
  }
}
