
body {  background: url('images/cité-ysandore.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #f5f5f5;
}

/* TITRES */
h1, h2, h3 {
  font-family: 'MedievalSharp', serif;
  color: #ffd54f;
}

/* ✅ COULEUR DE TOUS LES PARAGRAPHES */
p {
  color: white;
  font-size: 16px;
  line-height: 1.6;
}

/* LIENS */
a {
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
header.banner {
  background: url('images/ysandore-logo.png') no-repeat center center;
  background-size: contain;
  height: 200px;
}
nav {
  background: #000;
  display: flex;
  justify-content: center;
  padding: 12px;
}
nav a {
  color: #eee;
  margin: 0 18px;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover {
  color: #ffd54f;
}
section {

  max-width: 960px;
  margin: 40px auto;
  padding: 50px 24px 50px 24px;
  text-align: center;
   background: rgba(34,34,34,0.85);
  border-radius: 8px;
}
footer {
  background: #000;
  color: #ccc;
  text-align: center;
  padding: 18px;
  font-size: 14px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* grille auto */
  gap: 15px; /* espace entre les images */
  margin-top: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Lightbox plein écran */
#lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}
.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ccc;
}

.breadcrumb a {
  color: #ffd54f;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;

}

