body{
    background-color: #f5efe7;
}

.histoire-page {
  background: #f4efe7;
  padding: 70px 6%;
}

.history-hero {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.history-text span {
  color: #8a5a38;
  letter-spacing: 4px;
  font-weight: bold;
}

.history-text h1 {
  font-family: Georgia, serif;
  font-size: 58px;
  color: #2b1b14;
  margin: 20px 0;
}

.history-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.history-images {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}

.history-images img,
.atelier-section img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.history-images .big-img {
    width: 360px;
    height: 380px;
    grid-row: span 2;
}

.atelier-section {
    margin-top: 70px;
    padding-top: 45px;
    border-top: 1px solid #c8a98d;

    display: grid;
    grid-template-columns: 430px 520px 430px;
    justify-content: center;
    align-items: center;

    column-gap: 70px;   /* espace entre les photos et le texte */
}

.atelier-section img {
    width: 430px;
    height: 290px;
    object-fit: cover;
    border-radius: 18px;
}

.atelier-text {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.atelier-text h2 {
  font-family: Georgia, serif;
  font-size: 32px;
  color: #2b1b14;
}

.atelier-text p {
  font-size: 17px;
  line-height: 1.7;
}

.atelier-text a {
  display: inline-block;
  margin-top: 20px;
  background: #4a3428;
  color: white;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 25px;
  font-weight: bold;
}

@media screen and (max-width: 900px) {
  .history-hero,
  .atelier-section {
    grid-template-columns: 1fr;
  }

  .history-text h1 {
    font-size: 40px;
  }

  .history-images {
    grid-template-columns: 1fr;
  }

  .history-images .big-img {
    height: 320px;
  }
}

/* FOOTER */

footer{
    width: 100%;
    height: 55px;
    background-color: #4a3428;
    color: white;
    text-align: center;
    margin-top: 80px;
}

footer p{
    margin: 0;
    padding-top: 18px;
}

