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

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fff;
  color: #333;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
}

header .logo {
  width: 180px;
  margin-bottom: 2rem;
}

.content {
  flex: 1;
  display: flex;
  align-items: stretch; /* IMPORTANT pour que les colonnes aient la même hauteur */
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.left {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
  padding-bottom: 2rem;
}

.right {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: right;
  padding: 1rem;
}

.reconstruction {
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #444;
}

@media (max-width: 900px) {
  .content {
    flex-direction: column;
  }

  .right {
    justify-content: flex-start;
    text-align: left;
    margin-top: 2rem;
  }
}



footer {
  font-size: 0.9rem;
  color: #666;
  text-align: left;
  padding-top: 2rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.5rem 0;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #eaeaea;
  color: #444;
  text-decoration: none;
  font-size: 1.4rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  background-color: #333;
  color: #fff;
}