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

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* Conteneur principal */
.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  gap: 20px;
}

/* Photo */
.photo {
  flex: 1 1 60%;
}

.photo img {
  max-width: 100%;
  max-height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
}

/* Présentation */
.presentation {
  flex: 1 1 35%;
  justify-content: center;
  text-align: center;
  margin: 10px;
}

.presentation h1 {
  text-align: center;
  font-size: 2em;
  color: #7f3131;
}

.presentation h2 {
  font-size: 1.3em;
  margin-top: 10px;
  color: #666;
}

.presentation p {
  margin-top: 20px;
  font-size: 1.1em;
}

/* Section contact */
footer.contact {
  background-color: #f8f8f8;
  padding: 30px 20px;
  text-align: center;
  margin-top: 40px;
}

footer.contact h3 {
  font-weight: bold;
  font-size: 1.5em;
  margin-bottom: 20px;

}

footer.contact p {
  margin: 10px 0;
}

footer.contact a {
  color: #4c4e51;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .photo, .presentation {
    flex: 1 1 100%;
  }

  .presentation h1 {
    font-size: 1.8em;
  }

  .presentation p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .presentation h1 {
    font-size: 1.6em;
  }

  .presentation h2 {
    font-size: 1.1em;
  }

  footer.contact {
    font-size: 0.95em;
  }
}
