* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0a0a0a;
  overflow-x: hidden;
}

/* ── INTRO ── */
.intro {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background-image: url('hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.8s ease;
}

.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

/* ── LANGUE ── */
.lang-switch {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.4);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
}

.lang-btn.active { color: #d4af7a; }
.lang-sep { color: rgba(255,255,255,0.2); font-size: 0.7rem; }

/* ── CONTENU ── */
.intro-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 3rem 1rem;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: #d4af7a;
  letter-spacing: 0.3em;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 5.5rem;
  color: #f5f0e8;
  letter-spacing: 0.15em;
  line-height: 1;
}

.divider {
  width: 50px;
  height: 0.5px;
  background: rgba(212,175,122,0.5);
}

.description {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(245,240,232,0.75);
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.location {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  color: #d4af7a;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

/* ── BOUTON CHOISIR ── */
.choose-btn {
  margin-top: 0.75rem;
  background: transparent;
  border: 0.5px solid rgba(212,175,122,0.6);
  color: #d4af7a;
  padding: 0.9rem 2.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.choose-btn:hover,
.choose-btn.active {
  background: rgba(212,175,122,0.08);
  border-color: #d4af7a;
}

/* ── MENU ÉVÉNEMENTS ── */
.event-menu {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 620px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 0;
  overflow: hidden;
}

.event-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  max-height: 400px;
}

/* CARTES TRANSPARENTES */
.event-card {
  position: relative;
  width: 130px;
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 0.5px solid rgba(212,175,122,0.45);
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
}

.event-card:hover {
  transform: translateY(-4px) scale(1.03);
  background: rgba(212,175,122,0.08);
  border-color: #d4af7a;
}

.event-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.75rem;
}

.event-icon { font-size: 1.5rem; }

.event-name {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: #d4af7a;
}

.event-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.68rem;
  color: rgba(245,240,232,0.65);
  text-align: center;
}

/* ── RÉSEAUX ── */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  border: 0.5px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.social-btn:hover {
  color: #d4af7a;
  border-color: rgba(212,175,122,0.4);
}

/* ── SCROLL HINT ── */
.scroll-hint {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: #d4af7a;
}

.scroll-hint:hover { opacity: 1; }

.scroll-arrow {
  animation: bounce 2s infinite;
  font-size: 1.2rem;
  color: #d4af7a;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── GALERIE ── */
.gallery-section {
  width: 100vw;
  min-height: 100vh;
  background: #080808;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  transition: opacity 0.8s ease;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  color: #d4af7a;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 3.5rem;
  color: #f5f0e8;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.1em;
}

/* ── CAROUSEL 3D ── */
.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-3d {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item {
  position: absolute;
  width: 280px;
  height: 340px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: 0.5px solid rgba(212,175,122,0.2);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-arrow {
  position: absolute;
  z-index: 20;
  background: transparent;
  border: 0.5px solid rgba(212,175,122,0.3);
  color: #d4af7a;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carousel-arrow.left { left: 0; }
.carousel-arrow.right { right: 0; }

.carousel-arrow:hover {
  background: rgba(212,175,122,0.1);
  border-color: #d4af7a;
}

/* ── DOTS ── */
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(212,175,122,0.25);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #d4af7a;
  width: 20px;
  border-radius: 3px;
}

/* ── FOOTER GALERIE ── */
.gallery-footer {
  margin-top: 2.5rem;
}

/* ── HERO VIDÉO ── */
.hero {
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease;
  background: #0a0a0a;
  z-index: 100;
}

.bg-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(25px);
  transform: scale(1.1);
  opacity: 0.5;
}

.main-video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  z-index: 1;
}

.back-btn {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  z-index: 2;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.6);
  padding: 0.5rem 1.2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-btn:hover {
  color: #d4af7a;
  border-color: rgba(212,175,122,0.5);
}