body {
  font-family: 'Playfair Display', serif;
  color: var(--marron-foncé);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: url('../images/Fond_acceuil.jpg') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
}

.bloc {
  margin: 150px auto 2rem;
  padding: 2rem 3rem;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: var(--papier);
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  max-width: 960px;
  width: 90vw;
  height: 100%;
}

h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #6b4c3b; 
  letter-spacing: 0.1em;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap;
}

.contact-block {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 0.1);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.contact-block h3 {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #2f2e2e;
  border-bottom: 2px solid #c7a17a;
  padding-bottom: 0.3rem;
}

.contact-block h3 .icon {
  margin-right: 0.5rem;
  fill: #c7a17a; /* couleur icon or doux */
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.contact-block p {
  line-height: 1.5;
  font-size: 1rem;
  color: #444;
  margin: 0.3rem 0;
}

.contact-block a {
  color: #6b4c3b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-block a:hover,
.contact-block a:focus {
  color: #a67c52;
  text-decoration: underline;
}

p + p {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #666;
}

.info-officielle {
  background-color: #f9f5e7; /* fond très léger, couleur papier ancien */
  border-left: 4px solid #c7a17a; /* barre couleur or doux */
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b3a2f; /* marron foncé */
  font-family: 'Playfair Display', serif;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(199, 161, 122, 0.3);
}

.info-officielle strong {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #6b4c3b;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.info-officielle br {
  content: "";
  margin-bottom: 0.5rem;
  display: block;
}

@media (max-width: 600px) {
  .contact-info {
    flex-direction: column;
  }

  .contact-block {
    min-width: 100%;
  }
}
