/* === Style global === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", Arial, sans-serif;
  background-color: #383736;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* === Conteneur principal === */
.container {
  text-align: center;
  padding: 2rem;
}

/* === Logos === */
.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.logo-box {
  background-color: #fff;
  padding: 0.8rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(250, 125, 85, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(250, 125, 85, 0.6);
}

.logo-box img {
  height: 70px;
  object-fit: contain;
  display: block;
}

/* === Titre et texte === */
h1 {
  color: #fa7d55;
  font-size: 2.2rem;
  margin: 0.3rem 0;
  letter-spacing: 1px;
}

.slogan {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* === Email === */
.email {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  background-color: #fa7d55;
  padding: 0.7rem 1.3rem;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.email:hover {
  background-color: #fff;
  color: #383736;
}
