/* ╔══════════════════════════════════════════════════════════════╗
   ║  L'AUBERGE DU TRÔNE — Feuille de styles principale         ║
   ║  Fichier : css/style.css                                    ║
   ║                                                              ║
   ║  COULEURS PRINCIPALES :                                      ║
   ║  - Or royal : #C5A55A (doré principal)                       ║
   ║  - Or clair : #f0d78c (reflets dorés)                        ║
   ║  - Or foncé : #8a6d2f / #a08030                              ║
   ║  - Fond noir : #0a0806                                       ║
   ║  - Texte clair : #e8dcc8 (parchemin)                         ║
   ║  - Texte moyen : #c4b899, #a09880, #9a9080                   ║
   ║  - Texte discret : #8a8070, #7a7060, #5a5040                 ║
   ║                                                              ║
   ║  POLICES :                                                    ║
   ║  - Cinzel Decorative : titres principaux (h1, h2)            ║
   ║  - Cinzel : sous-titres, navigation, boutons                 ║
   ║  - Cormorant Garamond : corps de texte, paragraphes          ║
   ╚══════════════════════════════════════════════════════════════╝ */


/* ═══════════════════════════════════════════
   SECTION 1 : RESET & BASE
   Styles de base appliqués à toute la page
   ═══════════════════════════════════════════ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: #0a0806;
  color: #e8dcc8;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}


/* ═══════════════════════════════════════════
   SECTION 2 : ANIMATIONS @keyframes
   ═══════════════════════════════════════════ */

/* Particules qui montent (bougies flottantes) */
@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

/* Lueur pulsante sur les cartes */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(197,165,90,0.15), 0 0 40px rgba(197,165,90,0.05); }
  50%      { box-shadow: 0 0 30px rgba(197,165,90,0.25), 0 0 60px rgba(197,165,90,0.1); }
}

/* Apparition du bas vers le haut */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Shimmer doré sur le texte */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Respiration douce (couronne, flèche) */
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.02); }
}


/* ═══════════════════════════════════════════
   SECTION 3 : CLASSES UTILITAIRES
   ═══════════════════════════════════════════ */

/* Texte doré dégradé */
.gold-text {
  background: linear-gradient(135deg, #C5A55A 0%, #f0d78c 40%, #C5A55A 60%, #a08030 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Texte doré avec animation shimmer */
.shimmer-text {
  background: linear-gradient(90deg, #C5A55A, #f0d78c, #C5A55A, #f0d78c, #C5A55A);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* Bordure médiévale double cadre
   Le ::before ajoute un 2e cadre en retrait de 4px */
.medieval-border {
  border: 1px solid rgba(197,165,90,0.2);
  position: relative;
}
.medieval-border::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border: 1px solid rgba(197,165,90,0.08);
  margin: 4px;
  pointer-events: none;
}

/* Effet hover sur les cartes */
.card-hover {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(197,165,90,0.1);
  border-color: rgba(197,165,90,0.4);
}

/* Texture de fond (motif croix subtil) */
.texture-overlay {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A55A' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Padding standard des sections */
.section-padding {
  padding: 100px 24px;
}

/* Animations d'apparition au scroll
   Le JS ajoute .visible quand la section entre dans le viewport */
.fade-section {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════
   SECTION 4 : BOUTONS
   ═══════════════════════════════════════════ */

/* Bouton royal doré plein
   Le ::after crée un reflet lumineux qui glisse au hover */
.btn-royal {
  background: linear-gradient(135deg, #8a6d2f, #C5A55A, #8a6d2f);
  color: #0a0806;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: center;
}
.btn-royal:hover {
  background: linear-gradient(135deg, #C5A55A, #f0d78c, #C5A55A);
  box-shadow: 0 0 30px rgba(197,165,90,0.3);
  transform: translateY(-2px);
}
.btn-royal::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.btn-royal:hover::after {
  left: 100%;
}

/* Bouton outline (bordure dorée, fond transparent) */
.btn-outline {
  background: transparent;
  color: #C5A55A;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 28px;
  border: 1px solid rgba(197,165,90,0.5);
  cursor: pointer;
  transition: all 0.4s;
  display: inline-block;
  text-align: center;
}
.btn-outline:hover {
  background: rgba(197,165,90,0.1);
  border-color: #C5A55A;
  box-shadow: 0 0 20px rgba(197,165,90,0.15);
}


/* ═══════════════════════════════════════════
   SECTION 5 : NAVIGATION
   ═══════════════════════════════════════════ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.5s;
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
}

/* État scrollé (fond sombre + flou) — ajouté par JS */
.site-nav.scrolled {
  background: rgba(10,8,6,0.95);
  border-bottom: 1px solid rgba(197,165,90,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  cursor: pointer;
  font-family: 'Cinzel Decorative', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  position: relative;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a09880;
  cursor: pointer;
  transition: color 0.3s;
  padding: 4px 0;
  background: none;
  border: none;
}
.nav-link:hover,
.nav-link.active {
  color: #C5A55A;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: #C5A55A;
  transition: all 0.3s;
  transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Bouton hamburger mobile */
.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: #C5A55A;
  font-size: 24px;
  cursor: pointer;
}

/* Menu mobile déroulant */
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(10,8,6,0.98);
  border-bottom: 1px solid rgba(197,165,90,0.15);
  padding: 20px 24px;
  flex-direction: column;
  gap: 16px;
}
.nav-mobile-menu.open {
  display: flex;
}


/* ═══════════════════════════════════════════
   SECTION 6 : HERO
   ═══════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(139,109,47,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(139,69,19,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(139,109,47,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0a0806 0%, #12100a 40%, #0f0c08 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 800px;
}

.hero-crown {
  font-size: 52px;
  margin-bottom: 12px;
  animation: breathe 4s ease-in-out infinite;
}

.hero-subtitle-top {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #C5A55A;
  margin-bottom: 24px;
  opacity: 0.8;
}

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 3px;
}

.hero-tagline {
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: #c4b899;
  max-width: 540px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.hero-desc {
  font-size: 15px;
  color: #8a8070;
  max-width: 450px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-rating {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border: 1px solid rgba(197,165,90,0.15);
  border-radius: 4px;
  background: rgba(197,165,90,0.03);
}
.hero-rating .stars {
  display: flex;
  gap: 2px;
}
.hero-rating .stars span {
  color: #C5A55A;
  font-size: 16px;
}
.hero-rating .rating-text {
  color: #a09880;
  font-size: 13px;
  font-family: 'Cinzel', serif;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: breathe 3s ease-in-out infinite;
}
.scroll-indicator span:first-child {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════
   SECTION 7 : TITRES DE SECTIONS
   ═══════════════════════════════════════════ */

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #C5A55A;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.section-title-sm {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-desc {
  font-size: 17px;
  color: #9a9080;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

.medieval-divider {
  display: flex;
  justify-content: center;
  margin: 20px 0 32px;
}
.medieval-divider.flip {
  transform: rotate(180deg);
}


/* ═══════════════════════════════════════════
   SECTION 8 : LE CONCEPT
   ═══════════════════════════════════════════ */

.concept-text {
  font-size: 19px;
  line-height: 1.9;
  color: #c4b899;
  max-width: 700px;
  margin: 0 auto 36px;
  font-style: italic;
  font-weight: 300;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.concept-card {
  padding: 32px;
  background: linear-gradient(180deg, rgba(20,16,10,0.8), rgba(10,8,6,0.9));
  text-align: center;
}
.concept-card .icon { font-size: 36px; margin-bottom: 16px; }
.concept-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  color: #C5A55A;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.concept-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #9a9080;
}


/* ═══════════════════════════════════════════
   SECTION 9 : LES ESPACES
   ═══════════════════════════════════════════ */

.espaces-section {
background: linear-gradient(180deg, rgba(10,8,6,1) 0%, rgba(18,14,8,1) 50%, rgba(10,8,6,1) 100%);
}
.espaces-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
/* Carte photo plein cadre */
.espace-photo-card {
position: relative;
height: 360px;
overflow: hidden;
border-radius: 4px;
cursor: default;
}
/* Image de fond — couvre toute la carte */
.espace-photo-card img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Zoom subtil au survol */
.espace-photo-card:hover img {
transform: scale(1.08);
}
/* Voile sombre dégradé en bas pour la lisibilité du texte */
.espace-photo-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
0deg,
rgba(5,4,2,0.95) 0%,
rgba(5,4,2,0.7) 30%,
rgba(5,4,2,0.15) 60%,
transparent 100%
);
z-index: 2;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 32px;
transition: background 0.6s ease;
}
/* Au survol, le voile s'éclaircit légèrement */
.espace-photo-card:hover .espace-photo-overlay {
background: linear-gradient(
0deg,
rgba(5,4,2,0.9) 0%,
rgba(5,4,2,0.5) 35%,
rgba(5,4,2,0.05) 65%,
transparent 100%
);
}
/* Titre de l'espace */
.espace-photo-overlay h3 {
font-family: 'Cinzel', serif;
font-size: 22px;
font-weight: 700;
color: #e8dcc8;
margin-bottom: 10px;
letter-spacing: 2px;
text-transform: uppercase;
text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
/* Petit trait doré sous le titre */
.espace-photo-overlay h3::after {
content: '';
display: block;
width: 50px;
height: 2px;
background: linear-gradient(90deg, #C5A55A, transparent);
margin-top: 10px;
}
/* Description */
.espace-photo-overlay p {
font-size: 14.5px;
line-height: 1.7;
color: #c0b8a8;
max-width: 90%;
text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
/* RESPONSIVE : une seule colonne sur mobile */
@media (max-width: 700px) {
.espaces-grid {
grid-template-columns: 1fr;
}
.espace-photo-card {
height: 300px;
}
.espace-photo-overlay {
padding: 24px;
}
.espace-photo-overlay h3 {
font-size: 18px;
}
}

/* ═══════════════════════════════════════════
   SECTION 10 : NOS OFFRES
   ═══════════════════════════════════════════ */

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

.offre-card {
  background: linear-gradient(180deg, rgba(22,18,10,0.95), rgba(10,8,6,0.98));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.offre-header {
  padding: 32px 28px 24px;
  border-bottom: 1px solid rgba(197,165,90,0.1);
}
.offre-header .icon { font-size: 36px; margin-bottom: 12px; }
.offre-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: #e8dcc8;
  margin-bottom: 4px;
}
.offre-header .subtitle {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C5A55A;
}

.offre-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.offre-body .desc {
  font-size: 15px;
  line-height: 1.7;
  color: #a09880;
  margin-bottom: 24px;
}

.offre-features {
  margin-bottom: 28px;
  flex: 1;
  list-style: none;
}
.offre-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #b0a890;
}
.offre-features li::before {
  content: '⚜';
  color: #C5A55A;
  font-size: 12px;
}

.offre-card .btn-royal {
  width: 100%;
}


/* ═══════════════════════════════════════════
   SECTION 11 : TÉMOIGNAGES
   ═══════════════════════════════════════════ */

.avis-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, rgba(10,8,6,1), rgba(16,13,8,1), rgba(10,8,6,1));
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.avis-card {
  padding: 28px;
  background: rgba(16,13,8,0.6);
  text-align: left;
}
.avis-card .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.avis-card .stars span { color: #C5A55A; font-size: 16px; }
.avis-card .stars span.empty { color: #3a3020; }
.avis-card .text {
  font-size: 15px;
  line-height: 1.7;
  color: #b0a890;
  font-style: italic;
  margin-bottom: 16px;
}
.avis-card .author {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  color: #C5A55A;
  letter-spacing: 1px;
}


/* ═══════════════════════════════════════════
   SECTION 12 : PARTENAIRES
   ═══════════════════════════════════════════ */

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

.partenaire-card {
  padding: 32px;
  background: linear-gradient(180deg, rgba(20,16,10,0.8), rgba(10,8,6,0.9));
  cursor: pointer;
}
.partenaire-card .icon { font-size: 36px; margin-bottom: 14px; }
.partenaire-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  color: #e8dcc8;
  margin-bottom: 8px;
}
.partenaire-card p {
  font-size: 14px;
  color: #8a8070;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════
   SECTION 13 : INSTAGRAM
   ═══════════════════════════════════════════ */

.instagram-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, rgba(10,8,6,1), rgba(16,13,8,1), rgba(10,8,6,1));
  text-align: center;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 400px;
  margin: 0 auto 32px;
}

/* Placeholder Instagram (remplacer par images)
   Pour une vraie image : utiliser .insta-cell + <img> à la place */
.insta-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1510, #0f0c08);
  border: 1px solid rgba(197,165,90,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.insta-placeholder:hover {
  border-color: rgba(197,165,90,0.3);
  background: linear-gradient(135deg, #1f1a12, #141008);
}

/* Cellule Instagram avec vraie image */
.insta-cell {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(197,165,90,0.1);
  transition: all 0.3s;
  cursor: pointer;
}
.insta-cell:hover {
  border-color: rgba(197,165,90,0.3);
}
.insta-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.insta-cell:hover img {
  transform: scale(1.05);
}


/* ═══════════════════════════════════════════
   SECTION 14 : CONTACT & FOOTER
   ═══════════════════════════════════════════ */

.contact-section {
  padding: 80px 24px 40px;
  background: linear-gradient(180deg, rgba(10,8,6,1), rgba(6,5,3,1));
}

.contact-desc {
  font-size: 17px;
  color: #a09880;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-style: italic;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.contact-item {
  text-align: center;
}
.contact-item .icon { font-size: 28px; margin-bottom: 12px; }
.contact-item h4 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: #C5A55A;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-item p {
  font-size: 14px;
  color: #8a8070;
  line-height: 1.6;
}

.footer {
  border-top: 1px solid rgba(197,165,90,0.1);
  padding-top: 32px;
  text-align: center;
}
.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.footer-tagline {
  font-size: 13px;
  color: #5a5040;
  margin-bottom: 16px;
  font-style: italic;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.footer-links a {
  color: #7a7060;
  font-size: 13px;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #C5A55A;
}
.footer-copyright {
  font-size: 11px;
  color: #3a3528;
  letter-spacing: 1px;
}


/* ═══════════════════════════════════════════
   SECTION 15 : PARTICULES
   ═══════════════════════════════════════════ */

.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  bottom: -10px;
}


/* ═══════════════════════════════════════════
   SECTION 16 : RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
  .section-padding { padding: 60px 16px; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .offres-grid { grid-template-columns: 1fr; }
  .btn-royal, .btn-outline { font-size: 11px; padding: 12px 24px; }
  .hero-crown { font-size: 40px; }
  .hero-rating { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
SECTION 17 : PLAYER AUDIO AMBIANCE
Bouton flottant en bas à droite
═══════════════════════════════════════════ */
/* Bouton flottant */
.audio-toggle {
position: fixed;
bottom: 28px;
right: 28px;
z-index: 1000;
width: 52px;
height: 52px;
border-radius: 50%;
border: 1px solid rgba(197, 165, 90, 0.4);
background: rgba(10, 8, 6, 0.85);
backdrop-filter: blur(10px);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.4s ease;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.audio-toggle:hover {
border-color: rgba(197, 165, 90, 0.8);
background: rgba(18, 14, 8, 0.95);
transform: scale(1.08);
box-shadow: 0 4px 24px rgba(197, 165, 90, 0.15);
}
/* Icône son (barres animées quand ça joue) */
.audio-icon {
display: flex;
align-items: flex-end;
gap: 3px;
height: 20px;
}
.audio-icon .bar {
width: 3px;
background: #C5A55A;
border-radius: 2px;
transition: height 0.3s ease;
}
/* État muet — barres courtes et fixes */
.audio-toggle .bar:nth-child(1) { height: 6px; }
.audio-toggle .bar:nth-child(2) { height: 10px; }
.audio-toggle .bar:nth-child(3) { height: 6px; }
.audio-toggle .bar:nth-child(4) { height: 8px; }
/* État lecture — barres animées */
.audio-toggle.playing .bar:nth-child(1) { animation: audioBar 0.8s ease-in-out infinite; }
.audio-toggle.playing .bar:nth-child(2) { animation: audioBar 0.8s ease-in-out 0.2s infinite; }
.audio-toggle.playing .bar:nth-child(3) { animation: audioBar 0.8s ease-in-out 0.4s infinite; }
.audio-toggle.playing .bar:nth-child(4) { animation: audioBar 0.8s ease-in-out 0.1s infinite; }
@keyframes audioBar {
0%, 100% { height: 6px; }
50% { height: 20px; }
}
/* Tooltip au survol */
.audio-toggle::before {
content: 'Ambiance sonore';
position: absolute;
right: 64px;
top: 50%;
transform: translateY(-50%);
background: rgba(10, 8, 6, 0.9);
color: #C5A55A;
font-family: 'Cormorant Garamond', serif;
font-size: 13px;
padding: 6px 14px;
border-radius: 4px;
border: 1px solid rgba(197, 165, 90, 0.3);
white-space: nowrap;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}
.audio-toggle:hover::before {
opacity: 1;
}
/* Sur mobile, un peu plus petit */
@media (max-width: 700px) {
.audio-toggle {
width: 46px;
height: 46px;
bottom: 20px;
right: 20px;
}
.audio-toggle::before {
display: none;
}
}
