@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&family=Inter:wght@300;400&display=swap');

:root {
  --gold:#d4af37;
  --dark:#0b0f14;
  --glass:rgba(255,255,255,0.05);
}

body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:var(--dark);
  color:#eee;
}

header{
  display:flex;
  justify-content:space-between;
  padding:20px 10%;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(8px);
  position:sticky;
  top:0;
  z-index:100;
}

h1{
  font-family:'Playfair Display',serif;
  color:var(--gold);
}

nav a{
  color:#eee;
  margin-left:20px;
  text-decoration:none;
}

nav a:hover{color:var(--gold);}

.hero{
	height: 40vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-size: cover;        /* l’image couvre toute la section */
	background-position: center;   /* centre l’image */
	background-repeat: no-repeat;
}

.section{
  padding:0 10% 40px;
}

.section h2{
  border-left:4px solid var(--gold);
  padding-left:10px;
  margin-top:40px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.card{
  background:var(--glass);
  border-radius:12px;
  overflow:hidden;
  transition:0.4s;
}

.card:hover{transform:translateY(-10px);}

.card img{width:100%;height:220px;object-fit:cover;}


/* ===== GALERIE ===== */

.gallery-container{
  position:relative;
  max-width:1000px;
  margin:30px auto;
}

/* 🔥 HAUTEUR FIXE = PLUS DE SAUT */
.slides{
  width:100%;
  height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#000;
  border-radius:12px;
  overflow:hidden;
}

.slides img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  display:none;
}

.slides img.active{
  display:block;
}

/* boutons */
.prev,.next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.6);
  border:none;
  color:var(--gold);
  font-size:26px;
  padding:10px;
  cursor:pointer;
  z-index:5;
}

.prev{left:10px;}
.next{right:10px;}

/* thumbnails */
.thumbnails{
  display:flex;
  gap:10px;
  margin-top:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.thumbnails img{
  width:80px;
  height:60px;
  object-fit:cover;
  opacity:0.5;
  cursor:pointer;
  border-radius:6px;
}

.thumbnails img.active{
  opacity:1;
  border:2px solid var(--gold);
}


/* Pour afficher google map */
.map-section {
  padding-top: 20px;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  margin-top: 20px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


img{width:100%;border-radius:10px;}

/* footer */
footer{
  text-align:center;
  padding:30px;
  background:#000;
}

/* mobile */
@media(max-width:768px){
  header{flex-direction:column;text-align:center;}
  .slides{height:300px;}
}