/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}

/* Section image de fond */
.hero {
  height: 100vh;              
  width: 100%;
  background: url("Images/fond.jpg") no-repeat center center/cover;

  display: flex;
  justify-content: center;   /* centre horizontalement */
  align-items: center;       /* centre verticalement */
  text-align: center;
}

/* Bloc logo + texte */
.content {
  color: white;
  width: 100%;
  display: flex;
  flex-direction: column;   /* logo au-dessus du texte */
  justify-content: center;  /* centre verticalement */
  align-items: center;      /* centre horizontalement */
  text-align: center;
  min-height: 100%;         /* occupe toute la hauteur dispo */
}

/* Logo responsive */
.logo {
  width: clamp(90px, 30%, 600px); /* mini 90px, maxi 600px, sinon 30% */
  height: auto;
}

/* Styles du texte */
.name {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color:#3355c1;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.job {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: #f8442b;
  font-weight: 500;
  margin-bottom: 2rem;
}

.address,
.phone {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color:#3355c1;
  margin-bottom: 0.5rem;
}

.phone {
  font-weight: 600;
}

.info {
  background: #f8442b;
  color: white;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 700;
  font-style: normal;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 5px;
  display: inline-block;
  text-shadow: none;
}

.audience {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 5px;
  color: #f8442b;
  width: 100%;
  margin: 40px auto;
}

.audience .separator {
  color: #3355c1;
  margin: 0 8px;
}

/* --- Responsive mobile --- */
@media (max-width: 600px) {
  .audience {
    letter-spacing: 2px;  /* réduit l’espacement */
    display: block;       /* permet retour à la ligne */
    line-height: 1.5;
  }

  .audience .separator {
    margin: 0 4px;
  }
}
