/* ================ */
/* VARIABLES CSS */
/* ================ */
:root {
  /* Couleurs */
  --primary-dark: #042926;
  --dark-accent: #031f1c;
  --gold-accent: #e3c879;
  --gold-light: #f0e0b5;
  --gold-lighter: #f5e6c0;
  --light-cream: #f5f3e7;
  --text-gray: #a0a0a0;
  --disabled-bg: #cccccc;
  --disabled-text: #666666;
  
  /* Transparences */
  --gold-transparent-2: rgba(227, 200, 121, 0.2);
  --gold-transparent-3: rgba(227, 200, 121, 0.3);
  --gold-transparent-4: rgba(227, 200, 121, 0.4);
  --gold-transparent-15: rgba(227, 200, 121, 0.15);
  --dark-transparent: rgba(15, 46, 43, 0.8);
  
  /* Ombres */
  --text-shadow-dark: 0 0 15px rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.3);
  --text-shadow-medium: 0 0 10px rgba(0, 0, 0, 0.6), 0 0 4px rgba(0, 0, 0, 0.4);
  --text-shadow-light: 0 0 5px rgba(0, 0, 0, 0.5);
  --box-shadow-medium: 0 3px 12px rgba(0, 0, 0, 0.35);
  --box-shadow-large: 0 6px 18px rgba(0, 0, 0, 0.45);
  
  /* Espacements */
  --section-padding: 70px 20px;
  --mobile-padding: 50px 15px;
}

/* ================ */
/* BASE STYLES */
/* ================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: var(--primary-dark);
  color: var(--light-cream);
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

/* Texture d'arrière-plan subtile */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/stardust.png') repeat;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}

/* ================ */
/* HEADER & HERO */
/* ================ */
header.hero {
  background-color: var(--primary-dark);
  background-image: linear-gradient(to bottom, rgba(13, 60, 57, 0.6) 0%, rgba(4, 41, 38, 0.9) 100%);
  background-size: auto;
  background-position: center top;
  background-repeat: repeat-x;
  padding: 60px 20px 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-transparent-2);
}

.hero .logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 3.2em;
  margin: 0;
  color: var(--light-cream);
  text-shadow: var(--text-shadow-dark);
  letter-spacing: 1px;
  font-weight: 700;
}

.hero h2 {
  font-size: 1.8em;
  margin: 15px 0;
  color: var(--gold-accent);
  text-shadow: var(--text-shadow-medium);
  font-weight: 500;
}

.hero p {
  font-size: 1.1em;
  font-weight: 400;
  margin: 5px 0;
  text-shadow: var(--text-shadow-light);
}

/* Image hero pleine lune responsive */
.hero-pleinelune-image {
  max-width: 900px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.hero-pleinelune-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 1.25em;
  color: var(--gold-accent);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

@media (max-width: 900px) {
  .hero-pleinelune-image {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-pleinelune-image {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }
  .hero-pleinelune-caption {
    font-size: 1em;
    margin-top: 10px;
  }
}

/* ================ */
/* SECTIONS & CONTENU */
/* ================ */
section {
  max-width: 800px;
  margin: auto;
  padding: var(--section-padding);
  background-color: transparent;
  position: relative;
}

.separator {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-transparent-4), transparent);
  margin: 40px auto;
  width: 80%;
}

h3 {
  color: var(--gold-accent);
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 35px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5), 0 0 3px var(--gold-transparent-3);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ================ */
/* COMPOSANTS */
/* ================ */
/* Listes */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 10px;
  padding-left: 1.5em;
  position: relative;
}

ul li::before {
  content: "\2728";
  color: var(--gold-accent);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.9em;
}

/* Cartes options */
.option {
  background: var(--dark-transparent);
  margin: 30px 0;
  padding: 30px;
  border-left: 6px solid var(--gold-accent);
  border-radius: 10px;
  box-shadow: var(--box-shadow-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-large);
}

.option h4 {
  font-size: 1.5em;
  color: var(--gold-lighter);
  margin-bottom: 12px;
  font-weight: 600;
}

/* Formulaire */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

label {
  font-weight: bold;
  color: var(--gold-accent);
}

input, select {
  padding: 12px;
  border: 1px solid var(--gold-transparent-2);
  border-radius: 5px;
  background: var(--dark-transparent);
  color: var(--light-cream);
  font-family: inherit;
}

button {
  padding: 12px 25px;
  background: var(--gold-accent);
  color: var(--primary-dark);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ================ */
/* RESERVATION */
/* ================ */
/* Styles pour la section de réservation et statut d'événement */
.reservation {
  text-align: center;
  margin: 40px auto;
  max-width: 600px;
  padding: 30px;
  background: var(--dark-transparent);
  border-radius: 15px;
  box-shadow: var(--box-shadow-medium);
}

.event-status {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gold-transparent-2);
}

.event-status h3 {
  color: var(--gold-accent);
  font-size: 2.4em;
  margin-bottom: 15px;
}

.thanks-message {
  font-size: 1.2em;
  line-height: 1.6;
  color: var(--light-cream);
  max-width: 600px;
  margin: 0 auto;
}

.next-event {
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--gold-accent);
}

.next-event h3 {
  color: var(--gold-lighter);
  margin-bottom: 20px;
  font-size: 1.8em;
}

.event-details {
  text-align: left;
  max-width: 500px;
  margin: 0 auto 25px;
  line-height: 1.8;
}

.event-details p {
  margin: 10px 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold-transparent-15);
  border: 1px solid var(--gold-transparent-3);
  border-radius: 30px;
  color: var(--gold-lighter);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.social-links a:hover {
  background: var(--gold-transparent-3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-links span {
  font-size: 0.9em;
}

.contact-info {
  margin-top: 25px;
  font-size: 1.1em;
}

.contact-info p {
  margin: 10px 0;
}

.contact-info a {
  color: var(--gold-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Media Queries pour la section de réservation */
@media (max-width: 768px) {
  .reservation {
    margin: 30px 15px;
    padding: 25px 15px;
  }
  
  .event-status h3 {
    font-size: 2em;
  }
  
  .thanks-message {
    font-size: 1.1em;
  }
  
  .next-event {
    padding: 20px 15px;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .social-links a {
    width: 80%;
    justify-content: center;
  }
}

.disabled-button, .disabled-btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--disabled-bg);
  color: var(--disabled-text);
  border-radius: 25px;
  cursor: not-allowed;
  font-weight: 600;
  margin: 20px 0;
}

.disabled-btn-container {
  text-align: center;
  margin: 30px 0;
}

/* Contact Info (unifié) */
.contact-info {
  display: inline-block;
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: var(--light-cream);
  line-height: 1.8;
}

.contact-info p {
  margin: 10px 0;
}

.contact-info a {
  color: var(--gold-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ================ */
/* FOOTER */
/* ================ */
footer {
  text-align: center;
  padding: 40px 20px;
  background: var(--dark-transparent);
  margin-top: 60px;
}

footer a {
  color: var(--gold-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ================ */
/* COMPOSANTS UI */
/* ================ */
/* Bouton WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gold-transparent-3);
  color: var(--primary-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: var(--gold-accent);
}

/* Lune avant footer */
.pre-footer-moon {
  text-align: center;
  margin: 40px 0;
}

.pre-footer-moon img {
  max-width: 100px;
  height: auto;
  opacity: 0.8;
  animation: float 6s ease-in-out infinite;
}

/* Bannière de réservation */
.reservation-banner {
  background: var(--gold-transparent-2);
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0;
  text-align: center;
  font-weight: 600;
  color: var(--gold-accent);
}

/* ================ */
/* MEDIA QUERIES */
/* ================ */
@media (max-width: 768px) {
  header.hero {
    padding: 40px 15px 60px;
  }
  
  .hero h1 {
    font-size: 2.5em;
  }
  
  .hero h2 {
    font-size: 1.5em;
  }
  
  section {
    padding: var(--mobile-padding);
  }
  
  h3 {
    font-size: 1.8em;
  }
  
  .option {
    padding: 20px;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 600px) {
  header.hero {
    padding: 30px 10px 50px;
  }
  
  .hero .logo {
    max-width: 180px;
  }
  
  .hero h1 {
    font-size: 2em;
  }
  
  .hero h2 {
    font-size: 1.3em;
  }
  
  section {
    padding: 30px 10px;
  }
  
  h3 {
    font-size: 1.6em;
  }
  
  .option {
    padding: 15px;
  }
  
  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 22px;
    bottom: 15px;
    right: 15px;
  }
  
  .flame {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--gold-accent) 0%, transparent 70%);
    opacity: 0.6;
    filter: blur(5px);
    animation: flicker 3s ease-in-out infinite;
  }
}

/* ================ */
/* LIENS GLOBAUX */
/* ================ */
a {
  color: var(--gold-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ================ */
/* SECTION GALERIE PREVIEW */
/* ================ */
.gallery-preview {
  text-align: center;
  margin: 60px auto;
  max-width: 800px;
  padding: 40px 20px;
  background: var(--dark-transparent);
  border-radius: 15px;
  box-shadow: var(--box-shadow-medium);
  transition: transform 0.3s ease;
}

.gallery-preview:hover {
  transform: translateY(-5px);
}

.gallery-preview p {
  font-size: 1.1em;
  color: var(--gold-light);
  margin: 20px 0;
  font-style: italic;
}

.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: var(--gold-transparent-2);
  color: var(--gold-accent);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.gallery-link:hover {
  background: var(--gold-accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.gallery-icon {
  font-size: 1.2em;
}

.gallery-arrow {
  transition: transform 0.3s ease;
}

.gallery-link:hover .gallery-arrow {
  transform: translateX(5px);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes flicker {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.8; }
}

/* Responsive pour la section galerie */
@media (max-width: 600px) {
  .gallery-preview {
    padding: 30px 15px;
  }
  
  .gallery-link {
    padding: 10px 20px;
  }
}

