/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

.load-more-container .button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--or);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.load-more-container .button:hover {
    background-color: #e1c96e;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}


/* Hero Section */
.hero {
  padding: 6rem 2rem;
  text-align: center;
  border-bottom: 3px double var(--or);
  position: relative;
  overflow: hidden;
  margin-top: 120px;
  background-color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 3.2rem;
  color: #8b5e3c;
  margin-bottom: 2rem;
  animation: fadeIn 3s ease-out;
}

.hero p {
  font-size: 1.8rem;
  font-style: italic;
  color: #4e3c25;
  animation: fadeIn 1.8s ease-out;
}

.hero blockquote {
  font-size: 1.4rem;
}
/* Gallery */
.gallery-preview {
  padding: 4rem 5%;
  background-color: var(--papier);
}

.gallery-preview h2 {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #7a4e28;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.gallery-item {
  flex: 0 0 calc(20% - 1rem);
  margin: 0.5rem;
  text-align: center;
  background: #fffaf0;
  padding: 1.5rem;
  border: 3px double var(--or);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  max-width: 100%;
  border: 2px solid var(--or);
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.gallery-item h3 {
  font-family: 'Cinzel', serif;
  color: #7a4e28;
  margin: 0.5rem 0;
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 2rem;
}



.infos {
    margin-top: 5rem;
    padding: 2rem;
    text-align: center;
    background-color: var(--papier);
}

.infos h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #7a4e28;
}

.content-container {
    display: flex;
    gap: 2rem;
    align-items: center; /* Aligne les éléments verticalement au centre */
}

.text-content {
    flex: 1;
    background-color: var(--papier); /* Utilise la couleur papier définie dans :root */
    padding: 1.5rem;
    border-radius: 8px;
    box-sizing: border-box;
    height: 100%; /* Prend toute la hauteur disponible */
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-content p {
    margin: 0;
    font-size: 2rem;
    line-height: 1.6;
}

/* Values Section */
.values {
  background: var(--papier);
  padding: 4rem 2rem;
  text-align: center;
}

.values h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #7a4e28;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}

.columns div {
  flex: 1 1 250px;
  padding: 1.5rem;
  border: 2px solid var(--or);
  background-color: #fffaf0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Newsletter Section */
.newsletter {
  background-color: rgba(255, 248, 225, 0.97);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 2px solid var(--or);
}

.newsletter h2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: #7a4e28;
}

.newsletter form {
  margin-top: 1.5rem;
}

.newsletter input {
  padding: 0.8rem;
  border: 2px solid #a87c1f;
  border-radius: 6px;
  width: 250px;
  max-width: 80%;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
}

.newsletter button {
  padding: 0.8rem 1.5rem;
  margin-left: 1rem;
  background-color: var(--or);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter button:hover {
  background-color: #caa94f;
}


