:root{
  --bg:#111827;
  --card:rgba(45, 55, 72, 0.85);
  --text:#f3f4f6;
  --muted:#9ca3af;
  --border:rgba(255, 255, 255, 0.2);
  --accent:#f3f4f6;
  --accent2:#f97316;
  --max:1100px;
  --radius:20px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text); background:var(--bg);}
body{
  background-image:url("./images/background.png");
  background-size:cover;
  background-attachment:fixed;
  background-repeat:no-repeat;
}
a{color:inherit;text-decoration:none}
a.underline{text-decoration:underline}
.container{max-width:var(--max); margin:0 auto; padding:18px}
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(17, 24, 39, 0.8);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 18px; max-width:var(--max); margin:0 auto;}
.brand{font-weight:700; letter-spacing:0.2em; font-size:1.4rem; font-family: ui-serif, Georgia, 'Times New Roman', serif; text-transform: uppercase;}
.nav{display:flex; gap:18px; flex-wrap:wrap; font-size:14px; color:var(--muted)}
.nav a:hover{color:var(--text); text-decoration:underline}
.lang{font-size:13px; color:var(--muted)}
.lang a{margin-left:10px}
.pill{
  display:inline-block; border:2px solid var(--text); padding:10px 14px; border-radius:999px; font-size:14px; font-weight:600;
}
.pill.primary{background:var(--text); color:#111827}
.grid{display:grid; gap:18px}
.grid-2{grid-template-columns:1fr}
@media(min-width:900px){ .grid-2{grid-template-columns:1fr 1fr} }
.card{
  background:var(--card);
  border:2px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 4px 20px rgba(0,0,0,0.3);
  padding:22px;
}
.hero-flex{display:flex; flex-direction:column; gap:24px; align-items:center}
@media(min-width:900px){ .hero-flex{flex-direction:row; align-items:flex-start} }
.hero-image{flex-shrink:0; width:100%; max-width:300px; border-radius:var(--radius); overflow:hidden}
.hero-image .ph{width:100%; border:none; padding:0}
.hero-image img{width:100%; height:100%; object-fit:cover}
.hero-content{flex-grow:1}
.h1{font-family: ui-serif, Georgia, 'Times New Roman', serif; font-size:44px; line-height:1.05; margin:0}
.h2{font-family: ui-serif, Georgia, 'Times New Roman', serif; font-size:28px; margin:0 0 8px}
.kicker{font-size:13px; color:var(--muted)}
.lead{font-size:16px; color:#e5e7eb; line-height:1.7}
.muted{color:var(--muted)}
.buttons{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.section{margin-top:18px}
.footer{
  border-top:2px solid var(--border);
  background: rgba(17, 24, 39, 0.8);
  margin-top:28px;
}
.footer-inner{max-width:var(--max); margin:0 auto; padding:22px 18px; display:flex; gap:14px; justify-content:space-between; flex-wrap:wrap; font-size:14px; color:var(--muted)}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.badge{border:2px solid var(--border); padding:6px 10px; border-radius:999px; font-size:12px; color:var(--muted); background:#1f2937}
.hr{height:2px; background:var(--border); margin:16px 0}

.carousel-minimal{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 4px 0;
  margin-top: 18px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.carousel-minimal::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.carousel-minimal img{
  height: 220px;
  width: 220px;
  border-radius: 16px;
  object-fit: cover;
  scroll-snap-align: start;
  flex: 0 0 auto;
  background: #fff;
  border: none;
}

@media (max-width: 600px){
  .carousel-minimal img{
    height: 180px;
    width: 180px;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius);
  z-index: 1000;
  width: min(90%, 500px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.profile-fade {
  mask-image: none;
  -webkit-mask-image: none;
}
@media(min-width:900px) {
  .profile-fade {
    mask-image: linear-gradient(to right, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
  }
}
.form{display:grid; gap:12px}
@media(min-width:900px){ .form.two{grid-template-columns:1fr 1fr} }
input,select,textarea{
  width:100%; padding:12px 12px; border-radius:14px; border:2px solid var(--border); font-size:14px; background:#111827; color:white;
}
textarea{resize:vertical}
input[type="checkbox"]{
  width:auto;
  margin:0;
}
label{font-size:13px; color:var(--muted); display:flex; align-items:center; gap:10px}
.small{font-size:12px; color:var(--muted)}
.gallery{
  display:grid; gap:10px;
  grid-template-columns:repeat(2,1fr);
}
@media(min-width:900px){ .gallery{grid-template-columns:repeat(3,1fr);} }
.ph{
  aspect-ratio:1/1; border-radius:14px; border:2px solid var(--border); background:linear-gradient(180deg,#1f2937,#111827);
  display:flex; align-items:center; justify-content:center; color:#6b7280; font-size:12px; text-align:center; padding:0;
  overflow:hidden;
}
.ph img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.notice{border-left:4px solid var(--accent2); padding-left:12px; color:var(--muted)}

/* Carte Guest */
.mini-map-wrap {
  margin-top: 24px;
  display: block;
}
.mini-map {
  width: min(400px, 100%);
  height: auto;
  display: block;
}
.pin-dot { fill: var(--accent2); }
.pin-drop { fill: rgba(245, 158, 11, 0.18); }
.pin-label {
  font-size: 14px;
  fill: var(--muted);
  font-family: inherit;
}