*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #f4d28b;      /* jaune doré pour le texte */
  --gold-strong: #f7c863; /* un peu plus vif pour le bouton */
  --dark-bg: #1b1106;
}

body {
  font-family: "Cormorant Garamond", serif;
  background: var(--dark-bg);
  color: var(--gold);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Chomsky", serif;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.8); /* un peu de relief */
}

/* --- HERO --- */

.hero {
  min-height: 100vh;
  background-image: url("img/bg-taverne.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0rem 1.5rem 4rem;
  text-align: center;
}

.sign-wrapper {
  display: inline-block;
}

.sign-swing {
  max-width: 380px;
  display: block;
  margin: -32px auto;
  transform-origin: top center;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 0.5rem;
  margin-top: 80px;
}

.hero p {
  color: rgba(244, 210, 139, 0.95);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 1.25rem;
}