:root {
  --bg-color: #ffffff;
  --text-color: #111111;
  --accent-color: #c89e2a;
  --font-primary: 'Poppins', sans-serif;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

a {
  color: var(--text-color);
}

img.logo {
  width: 80%;
  max-width: 600px;
  margin-bottom: 5rem;        
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 5rem;
  letter-spacing: 0.5px;
}

p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin: 40px 0;
  max-width: 800px;
}

.image-inspirante {
  width: 80%;
  max-width: 800px;
  margin: 0 auto 20px auto;
}
.image-inspirante img {
  width: 100%;
  height: auto;
}

/* Bloc contact ajouté */

.contact-logos {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    align-items: center;
    flex-wrap: wrap;
  justify-content: center;
}

.contact-logos img {
    height: 70px;
    width: auto;
    transition: transform 0.2s ease;
}

.contact-logos a:hover img {
    transform: scale(1.06);
}

footer {
  /*
  position: absolute;
  bottom: 1rem;
  */
  margin-top: 40px;
  font-size: 0.9rem;
  opacity: 0.6;
}

.lang-link {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  color: black;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-family: sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.3s, color 0.3s;
}
.lang-link:hover {
  background: black;
  color: white;
}

@media (max-width: 600px) {
  h1 { font-size: 1.8rem; }
  p { font-size: 1rem; }
}