@font-face {
  font-family: 'Baskervvol'; /* Nom que tu choisis */
  src: url('fonts/baskervvol.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Polices principales */
body {
    font-family: 'MuseoModerno', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

h1, h2 {
    font-family: 'MuseoModerno', sans-serif;
}

a {
	color: #000000;
}
/* En-tête */
header {
    padding: 40px 40px;
    max-width: 900px;
    margin: 0;
    text-align: left;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Contenu principal */
main {
    padding: 40px 40px;
    max-width: 900px;
    margin: 0;
    text-align: left;
}

h1 {
	font-size: clamp(22px, 6vw, 66px);
	color : #000000;
    line-height: 0.85;
    font-weight: 600;
	padding:0;
	margin:0;
}
h2 {
	font-size: clamp(12px, 3vw, 36px);
	color : #000000;
    line-height: 1;
    font-weight: 600;
	padding:0;
	margin:0;
}

h3 {
	/*font-size : 100px;*/
	font-size: clamp(32px, 10vw, 120px);
	color : #04A64B;
    line-height: 1;
    font-weight: 600;
	padding:0;
	margin: 50px 0;
}

p {
	font-size : 20px;
	color : #000000;
    line-height: 1,25;
    font-weight: 600;
	margin-top: 0;
}

.text {
	font-family: 'Baskervvol', sans-serif;
	font-size : 16px;
	line-height: 20px;
	font-weight: 300;
}
.titre {
    font-family: 'MuseoModerno', sans-serif;
	font-size : 14px;
    font-weight: 600;
}
.img_plan {
	border: solid 1px #04A64B;
}
.link {
    font-family: 'MuseoModerno', sans-serif;
	font-size : 16px;
    font-weight: 600;
	
}
/* Le conteneur principal */
.bloc {
  display: flex;
  align-items: top;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
}

/* Bloc image */
.bloc-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
}

/* Bloc texte */
.bloc-texte {
  flex: 1;
}

/* 🧠 Responsive : empilement sur mobile */
@media (max-width: 768px) {
  .bloc {
    flex-direction: column;
    text-align: left;
  }

  .bloc-image img {
    max-width: 100%;
    text-align: left;
  }
}

.trois-blocs {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
}

.blocs {
  flex: 1; /* chaque bloc prend la même largeur */
  padding: 0;
  text-align: left;
}

/* pour éviter que les blocs collent trop les uns aux autres */
.blocs:not(:last-child) {
  margin-right: 1rem;
}

/* Responsive : les blocs passent en colonne sur mobile */
@media (max-width: 768px) {
  .trois-blocs {
    flex-direction: column;
  }

  .blocs:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
/* Pied de page */
footer {
    background-color: #04A64B;
    padding: 20px 40px;
    text-align: left;
    margin-top: 40px;
}
footer .content {
    max-width: 900px;
	
}
