/* =============== */
/*  RESET SIMPLE   */
/* =============== */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* =============== */
/*  FOND + HERO    */
/* =============== */
.hero{
  min-height: 100vh;

  /* Fond : ton image sans texte */
  background: url("bg-exode.png") center/cover no-repeat;

  /* Contenu centré verticalement + horizontalement */
  display: grid;
  place-items: center;

  /* un peu d’air sur mobile */
  padding: 28px;

  position: relative;
  color: #fff;
  text-align: center;
}

/* Overlay sombre (comme l'image précédente) */
.overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}

/* Contenu au-dessus de l'overlay */
.content{
  position: relative;
  max-width: 900px;
  width: 100%;
}

/* =============== */
/*   TYPOGRAPHIE   */
/* =============== */

/* Gros titre style “affiche” (proche de ton rendu précédent) */
.brand{
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em; /* espacement entre lettres */
  font-size: 64px;
  line-height: 1.05;
  text-transform: uppercase;

  /* petit glow soft */
  text-shadow: 0 6px 28px rgba(0,0,0,0.45);
}

/* Coffee Bar en dessous, plus “élégant” */
.subbrand{
  margin-top: 10px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 34px;
  opacity: 0.95;
}

/* “Site en construction” comme sur l’image */
.status{
  margin-top: 34px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 26px rgba(0,0,0,0.45);
}

/* Phrase */
.desc{
  margin-top: 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-size: 22px;
  opacity: 0.92;
}

/* Bouton “caramel” */
.btn{
  display: inline-block;
  margin-top: 26px;
  padding: 14px 34px;
  border-radius: 12px;
  background: #b88a5a;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;

  /* effet simple */
  transition: transform 0.15s ease, background 0.2s ease;
}

.btn:hover{
  background: #9f744a;
  transform: translateY(-2px);
}

/* Domaine en bas (petit et discret) */
.domain{
  margin-top: 28px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  opacity: 0.7;
}

/* =============== */
/*  MEDIA QUERIES  */
/* =============== */

/* Mobile */
@media (max-width: 480px){
  .brand{ font-size: 38px; letter-spacing: 0.09em; }
  .subbrand{ font-size: 22px; }
  .status{ font-size: 26px; margin-top: 22px; }
  .desc{ font-size: 16px; }
  .btn{ width: 100%; max-width: 320px; padding: 14px 18px; }
}

/* Tablette */
@media (min-width: 481px) and (max-width: 900px){
  .brand{ font-size: 52px; }
  .subbrand{ font-size: 28px; }
  .status{ font-size: 34px; }
  .desc{ font-size: 19px; }
}