/* --- Styles Globaux --- */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: url('../images/background2.png') no-repeat center center;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 50px;
  margin-bottom: 10vh; /* 10% de la hauteur de la fenêtre */
}

/* Contact Section */
.contact-section {
  text-align: center;
  margin-top: 120px;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
}

.contact-item img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Contact Button */
.contact-button {
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 15px;
  background: white;
  color: black;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: background 0.3s ease, color 0.3s ease;
  font-size: 16px;
}

.contact-button:hover {
  background: black;
  color: white;
  border: 2px solid white;
}

/* Responsivité */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 20px;
  }

  .contact-button {
    width: 200px;
    font-size: 14px;
  }
}