/* ===== VARIABLES CSS AVEC ÉQUIVALENCES RGBA ===== */
:root {
    /* Palette dorée principale */
    --primary-gold: #B89E7C;        /* rgba(184, 158, 124, 1) - Or principal */
    --gold-light: #D4C4A8;          /* rgba(212, 196, 168, 1) - Or clair */
    --gold-dark: #8B7355;           /* rgba(139, 115, 85, 1) - Or foncé */
    --color-gold: #B89E7C;  
    
    /* Couleurs de fond sombres */
    --dark-bg: #000000;             /* rgba(0, 0, 0, 1) - Noir pur */
    --dark-secondary: #1a1a1a;      /* rgba(26, 26, 26, 1) - Gris très foncé */
    --dark-tertiary: #2a2a2a;       /* rgba(42, 42, 42, 1) - Gris foncé */
    
    /* Couleurs de texte */
    --text-light: #ffffff;          /* rgba(255, 255, 255, 1) - Blanc pur */
    --text-muted: #cccccc;          /* rgba(204, 204, 204, 1) - Gris clair */
    --text-gold: #B89E7C;           /* rgba(184, 158, 124, 1) - Texte doré */
    --text-dark: #000000;
    
    /* Overlays transparents */
    --overlay-dark: rgba(0,0,0,0.8);     /* Noir avec 80% d'opacité */
    --overlay-light: rgba(0,0,0,0.4);    /* Noir avec 40% d'opacité */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #B89E7C 0%, #8B7355 100%);
    /* Gradient: rgba(184, 158, 124, 1) vers rgba(139, 115, 85, 1) */
    
    --gradient-dark: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(40,40,40,0.8) 100%);
    /* Gradient: noir 90% opacité vers rgba(40, 40, 40, 0.8) */
    
    /* Ombres */
    --shadow-gold: 0 4px 20px rgba(105, 68, 21, 0.3);  /* Ombre brun doré avec 30% d'opacité */
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
  }

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
}

/* ===== TYPOGRAPHIE ===== */
.hero-title,
.footer-title {
  font-family: 'Dancing Script', cursive, 'Brush Script MT', fantasy;
  font-weight: 600;
  color: var(--text-gold);
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-light);
 
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--text-gold);
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-style: italic;
}

/* ===== NAVIGATION ===== */
.navbar {
    transition: all 0.3s ease;
    padding: 0;
}

.transparent-nav {
    background: transparent;
}

/* Logo toujours visible sur pages internes */
.bio-page .navbar .logo-menu-svg,
.agenda-page .navbar .logo-menu-svg,
.galerie-page .navbar .logo-menu-svg,
.contact-page .navbar .logo-menu-svg {
    opacity: 1;
    transform: scale(1);
}

/* Logo sur page d'accueil (comportement scroll) */
.home-page .navbar .logo-menu-svg {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.home-page .navbar.scrolled .logo-menu-svg {
    opacity: 1;
    transform: scale(1);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
}

.logo-menu-svg {
    height: 70px;
    width: auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-gold);
}

.logo-icon {
  color: var(--text-gold);
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 400;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link:hover {
  color: var(--text-gold) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* Effet dégradé pour les soulignements en responsive */
@media (max-width: 991px) {
  .navbar-nav .nav-link::after {
    background: linear-gradient(to right, var(--primary-gold) 0%, var(--primary-gold) 60%, rgba(184, 158, 124, 0) 100%);
  }
}

/* ===== SECTION PARTENAIRES ===== */
.partners-section {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-gold) 50%, transparent 100%);
}

.partners-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(184, 158, 124, 0.2);
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  min-height: 90px;
  min-width: 140px;
}

.partner-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(184, 158, 124, 0.4);
  box-shadow: 0 10px 30px rgba(184, 158, 124, 0.2);
}

.partner-logo {
  max-height: 60px;
  max-width: 120px;
  width: auto;
  height: auto;
  border-radius: 8px;
  transition: var(--transition-smooth);
  filter: brightness(0.9) contrast(1.1);
}

.partner-item:hover .partner-logo {
  filter: brightness(1) contrast(1.2);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .partners-container {
    gap: 30px;
  }
  
  .partner-item {
    min-width: 100px;
    min-height: 80px;
    padding: 15px;
  }
  
  .partner-logo {
    max-height: 80px;
    max-width: 120px;
  }
  
  .partners-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .partners-container {
    gap: 20px;
  }
  
  .partner-item {
    min-width: 80px;
    min-height: 70px;
    padding: 12px;
  }
  
  .partner-logo {
    max-height: 80px;
    max-width: 120px;
  }
}

/* ===== BOUTONS ===== */
.btn-primary-gold {
  background: var(--gradient-primary);
  border: none;
  color: var(--dark-bg);
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 25px;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--dark-bg);
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  font-weight: 500;
  padding: 10px 28px;
  border-radius: 25px;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
}

.btn-outline-gold:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-background {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  transition: opacity 0.5s ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
  text-align: right;
  z-index: 2;
  position: relative;
}


.logo-svg {
  height: 200px;
  width: auto;
  max-width: 100%;
}
.logo-svg-footer {
    height: 150px;
    width: auto;
    max-width: 100%;
    margin-right: 20px;
  }
  

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  width:100%;


  
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Navigation Dots */
.hero-nav-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.nav-dot:hover {
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.nav-dot.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Responsive pour le logo */
@media (max-width: 768px) {
  .logo-svg {
    height: 160px;
  }
}

@media (max-width: 576px) {
  .logo-svg {
    height: 140px;
  }
}

/* ===== SECTIONS GÉNÉRALES ===== */

section {
  padding: 80px 0;
  position: relative;
}

.section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  z-index: -1;
}

.section-decoration-right,
.section-decoration-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 300px;
  background: url('../svg/vegetal-harp-03.svg') center/contain no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.section-decoration-right {
  right: -50px;
}

.section-decoration-left {
  left: -50px;
}

/* ===== SECTION BIOGRAPHIE ===== */

.bio-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding:0px;
}

.bio-section .col-lg-8,
.bio-section .col-lg-4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-hero-section {
  position:relative;
  z-index:0
}
.bio-hero-section .hero-background {
  position:absolute;
  background: url('../images/bk-pe-header-01.jpg') no-repeat;
  background-position: top right;
  background-size: contain;
  min-height: 800px;
  top:0;
  right:0;
  z-index:1;
}

.bio-content {
  padding: 2.5rem;
}
.bio-title {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  padding: 2rem 0;
  font-size: 4.5rem;
  color: var(--text-gold);
}
.bio-quote {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: 1.5rem;
  line-height:1.8rem;
  color: var(--text-gold);
}
.bio-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-style: italic;
}

.bio-exergue {
  font-size: 0.9rem;
  color: var(--primary-gold);
  margin-top: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  text-align:justify;
}
.bio-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align:justify;

}
.bio-text-extrait {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align:justify;
  max-width:70%
}

.bio-visuels {
  max-width: 70%;
height:auto;
  position: relative;
  z-index: 1;
}

.bio-preview-section {
  background: url('../images/a-propos-pauline-elkaim-hero-01.jpg') no-repeat;
  background-position: center right;
  background-size: cover;
  position: relative;
  width:100%;
  height:100%;

}

/* Container pour les images avec légendes */
.bio-image-container {
  text-align: center;
  margin: 2rem 0;
}

.bio-image-container .bio-visuels {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.bio-image-container .bio-visuels:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Légendes sous les images */
.bio-image-caption {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
  padding: 0 1rem;
  line-height: 1.5;
  position: relative;
}


/* Responsive pour les légendes d'images */
@media (max-width: 768px) {
  .bio-image-container {
    margin: 1.5rem 0;
  }
  
  .bio-image-caption {
    font-size: 0.85rem;
    margin-top: 0.8rem;
  }
  
}


/* ===== CONTENU BILINGUE ===== */

/* Hero section bilingue */
.hero-text-bilingual {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-align: right;
}

.hero-text-fr {
    border-bottom: 1px solid rgba(184, 158, 124, 0.2);
    padding-bottom: 10px;
    text-align:right;
}

.hero-text-en {
    font-style: italic;
    opacity: 0.9;
    padding-top: 5px;
    text-align:right;
}

/* Section À propos bilingue */
.bio-text-bilingual-container {
    max-width: 800px;
    margin: 0 auto;
}

.bio-text-bilingual {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    text-align: left;
    margin-bottom: 20px;
}

.bio-text-fr {
    border-bottom: 1px solid rgba(184, 158, 124, 0.2);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.bio-text-en {
    font-style: italic;
    opacity: 0.95;
    padding-top: 5px;
}

/* Responsive pour contenu bilingue */
@media (max-width: 768px) {
    .hero-text-bilingual {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .hero-text-fr {
        padding-bottom: 12px;
        margin-bottom: 15px;
    }
    
    .hero-text-en {
        padding-top: 8px;
    }
    
    .bio-text-bilingual {
        font-size: 0.9rem;
    }
    
    .bio-text-fr {
        padding-bottom: 12px;
        margin-bottom: 18px;
    }
}

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

h4.video-title {
padding:1rem;
margin:auto;
text-align:center;
}

p.video-desc {
font-size:0.8rem;
margin:auto;
text-align:center;
}

.photos-section {
padding:0px;
}

.gallery-preview-section {
  background: var(--gradient-dark);
}
.gallery-hero-section {
  position:relative;
  z-index:0
}

.gallery-hero-section .hero-background {
  position:absolute;
  background: url('../svg/vegetal-harp-04.svg') no-repeat;
  background-position: top right;
  background-size: contain;
  height: 400px;
  top:0;
  right:0;
  z-index:1;
  opacity:0.6;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-overlay i {
  color: var(--text-gold);
  font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ===== SECTION VIDÉO ===== */
.video-section {
  background: var(--dark-secondary);
}

.video-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* ===== SECTION CONTACT ===== */
.contact-preview-section {
  background: var(--gradient-dark);
}
.contact-hero-section .container {
  position:relative;
  z-index:1;
}
.contact-form-section {
  position:relative;
  z-index:3;
  padding:2rem;
}
.contact-hero-section .hero-overlay {
  position:relative;
  z-index:2
}
.contact-hero-section .hero-background {
  position:absolute;
  background: url('../images/bk-pe-propos.png') no-repeat;
  background-position: center left;
  background-size: cover;
  height: 100%;
  width:100%;
  top:0;
  left:0;
  z-index:1;
}
.contact-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.footer-buttons {
  margin-bottom: 3rem;
}

/* ===== LECTEUR AUDIO COMPACT ===== */
.compact-audio-section {
    height:60px;
    display: flex;
    align-items: center;
    padding-bottom:40px;
    padding-top:40px;
    position: relative;
    z-index: 10;
}

.compact-audio-player {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 30px;
    padding: 0 20px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(184, 158, 124, 0.2);
}

.audio-left-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    padding: 15px 20px;
    border-right: 1px solid rgba(184, 158, 124, 0.3);
}

.audio-thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.track-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audio-label h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

.audio-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
}

.progress-container-compact {
  width: 100%;
  margin-bottom: 5px;
}

.progress-bar-compact {
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
}

.progress-fill-compact {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  width: 0%;
  transition: width 0.1s ease;
}

.track-info {
  text-align: center;
  margin-top:-3rem;
}

.track-title {
  font-size: 0.75rem;
  color: var(--primary-gold);
  margin-top: 10px;
  padding:0px;
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 15px 0;
}

.audio-info {
  flex: 1;
  min-width: 0;
}

.track-title {
  color: var(--primary-gold);
  font-size: 0.7rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-composer {
  color: var(--text-muted);
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audio-controls-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.control-btn-compact {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.control-btn-compact:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: scale(1.05);
}

.play-pause-main {
    width: 45px;
    height: 45px;
    padding-left:0.1rem;
    font-size: 1rem;
    background: var(--dark-bg);
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.play-pause-main:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.time-info-compact {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-gold);
    flex-shrink: 0;
    align-items: center;
}



.time-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.7rem;
    color: var(--text-gold);
    font-weight: 400;
}

.current-time,
.duration {
    font-family: 'Inter', sans-serif;
    font-variant-numeric: tabular-nums;
    margin-top:1rem;
}

.time-separator {
    color: var(--primary-gold);
    margin-top:1rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Responsive pour le lecteur compact */
@media (max-width: 768px) {
    .compact-audio-player {
        gap: 15px;
        padding: 0 15px;
    }
    
    .audio-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .audio-bottom-row {
        gap: 10px;
    }
    
    .track-title {
        font-size: 0.85rem;
    }
    
    .control-btn-compact {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .play-pause-compact {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .time-info-compact {
        font-size: 0.7rem;
        gap: 6px;
    }
}

@media (max-width: 576px) {
    .compact-audio-player {
        gap: 10px;
        padding: 0 10px;
    }
    
    .audio-bottom-row {
        gap: 8px;
    }
    
    .audio-controls-compact {
        gap: 6px;
    }
    
    .track-title {
        font-size: 0.8rem;
    }
}

/* ===== FOOTER ===== */
.footer-section {
width:100%;
height:500px;
  position: relative;
  padding: 60px 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.footer-overlay {
  position: absolute;
    top: 0;
    height: 250px;
    width:100%;
    background: linear-gradient(to bottom, black, transparent);
    z-index:0;
}

.footer-background {
  position: absolute;
  bottom:0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/bk-pe-footer-03.jpg') center/cover no-repeat;
  opacity: 0.8;
  z-index: -1;
}

.footer-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  
}

.footer-social h4 {
  color: var(--text-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(184, 158, 124, 0.2);
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

/* ===== FOOTER BOTTOM SECTION ===== */

.footer-content {
    text-align:center;
align-items:center;
justify-content: center;
}

.footer-bottom-section {
    background: var(--primary-gold);
    width: 100%;
    padding: 8px 0;
    margin: auto;
}

.footer-bottom-section .container {
    padding: 0 15px;
    margin: 0 auto;
}

.footer-bottom-section .row {
    margin: auto;
}

.footer-bottom-section .col-12 {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
}

.footer-bottom-section p {
    margin: auto;
    font-size: 0.7rem;
    color: #000000;
    text-align:center;
    line-height:0.8rem
}

.footer-bottom {
  display: none;
}

.admin-link {
    color: #000000;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.admin-link:hover {
  color: var(--gold-light);
}

@media (max-width: 576px) {

    .footer-content .hero-logo {
text-align:center;

    }
    .footer-subtitle {
        text-align:center;
        margin-left:inherit;
    }
    .footer-buttons {
        text-align:center;
        margin-left:inherit;
    }
    .footer-social h4{
        text-align:center;
        margin-left:inherit;
    }
    .social-links{
        text-align:center;
        margin-left:inherit;
        justify-content: center;
    }
    .logo-svg-footer {
        margin-right: 0;
    }
}

/* ===== HERO SECTION - OPTIMISATIONS MOBILE ===== */
@media (max-width: 768px) {
  .hero-background {
    background-position: center right;
    background-size: cover;
  }
  
  .hero-slide[data-bg*="pauline-elkaim-hero-01.jpg"] .hero-background {
    background-position: -400px center;
  }
  
  .hero-slide[data-bg*="pauline-elkaim-hero-02.jpg"] .hero-background {
    background-position: -450px center;
  }
  
  .hero-slide[data-bg*="hero-petit-pauline-elkaim-02.jpg"] .hero-background {
    background-position: -500px center;
  }
}

@media (max-width: 576px) {
  .hero-background {
    background-position: center;
  }
  
  .hero-slide[data-bg*="pauline-elkaim-hero-01.jpg"] .hero-background {
    background-position: -400px 0px;
  }
  
  .hero-slide[data-bg*="pauline-elkaim-hero-02.jpg"] .hero-background {
    background-position: -380px 0px;
  }
  
  .hero-slide[data-bg*="hero-petit-pauline-elkaim-02.jpg"] .hero-background {
    background-position: -500px 0px;
  }
  .bio-text-extrait {
  max-width:100%
  }
  .bio-preview-section{
  background:none;
  }
}

/* ===== LECTEUR AUDIO - MASQUER TEXTE SUR IPHONE ===== */
@media (max-width: 768px) {
  .audio-label {
    display: none;
  }
  
  .audio-left-section {
    border-right: none;
    padding: 15px 10px;
  }
  
  .compact-audio-player {
    gap: 15px;
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .audio-label {
    display: none;
  }
  
  .audio-left-section {
    border-right: none;
    padding: 15px 5px;
  }
  
  .compact-audio-player {
    gap: 10px;
    padding: 0 10px;
  }
  
  .audio-thumbnail {
    width: 45px;
    height: 45px;
  }
}

/* iPhone spécifique */
@media only screen and (max-width: 414px) and (-webkit-min-device-pixel-ratio: 2) {
  .audio-label {
    display: none !important;
  }
}

/* ===== CORRECTIONS GÉNÉRALES MOBILE ===== */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 576px) {
  .footer-content .hero-logo {
    text-align: center;
  }
  
  .footer-subtitle {
    text-align: center;
    margin-left: inherit;
  }
  
  .footer-buttons {
    text-align: center;
    margin-left: inherit;
  }
  
  .footer-social h4{
    text-align: center;
    margin-left: inherit;
  }
  
  .social-links{
    text-align: center;
    margin-left: inherit;
    justify-content: center;
  }
  
  .logo-svg-footer {
    margin-right: 0;
  }
}

/* ===== TIROIR CONCERT ===== */
.concert-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.concert-drawer.active {
    visibility: visible;
    opacity: 1;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.drawer-content {
    position: fixed;
    bottom: 10px;
    left: 50%;
    width: 90%;
    max-width: 600px;
    height: calc(100vh - 120px);
    background: var(--dark-bg);
    color: var(--text-light);
    transform: translateX(-50%) translateY(100%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    z-index: 10000;
}

.concert-drawer.active .drawer-content {
    transform: translateX(-50%) translateY(0);
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.drawer-close:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(184, 158, 124, 0.4);
}

.drawer-body {
    padding: 20px 0 0 0;
}

.concert-detail-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.concert-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concert-detail-info {
    padding: 2rem;
}

.concert-detail-info .concert-title {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.concert-meta {
    margin-bottom: 2rem;
}

.concert-meta > div {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.concert-meta i {
    color: var(--primary-gold);
    width: 20px;
    margin-right: 0.8rem;
}

.concert-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-light);
}

.concert-actions {
    text-align: center;
}

/* ===== TICKETS CONCERTS À VENIR ===== */
.upcoming-concert-ticket {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    border: 1px solid rgba(184, 158, 124, 0.1);
}

.upcoming-concert-ticket:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 158, 124, 0.4);
    border-left-width: 6px;
    background: linear-gradient(135deg, #333333 0%, #252525 100%);
    border-color: rgba(184, 158, 124, 0.2);
}

.upcoming-concert-ticket::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    transition: width 0.3s ease;
}

.upcoming-concert-ticket:hover::before {
    width: 6px;
}

.upcoming-ticket-content {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1.5rem;
}

.upcoming-ticket-date {
    flex: 0 0 80px;
    text-align: center;
    padding: 1rem 0.5rem;
    background: rgba(184, 158, 124, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(184, 158, 124, 0.3);
    position: relative;
}

.upcoming-ticket-date::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 20%;
    height: 60%;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--primary-gold) 0px,
        var(--primary-gold) 4px,
        transparent 4px,
        transparent 8px
    );
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.upcoming-concert-ticket:hover .upcoming-ticket-date::after {
    opacity: 0.9;
}

.upcoming-ticket-day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.upcoming-ticket-month {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.upcoming-ticket-info {
    flex: 1;
    min-width: 0;
}

.upcoming-ticket-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.upcoming-ticket-venue {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upcoming-ticket-venue i {
    color: var(--primary-gold);
    width: 14px;
}

/* Effet hover sur les cartes cliquables */
.clickable-concert {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clickable-concert:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(184, 158, 124, 0.2);
}

/* Responsive pour les tickets concerts à venir */
@media (max-width: 768px) {
    .upcoming-concerts-container {
        display: block !important;
        grid-template-columns: none !important;
    }
    
    .upcoming-ticket-content {
        padding: 1rem;
        gap: 1rem;
    }
    
    .upcoming-ticket-date {
        flex: 0 0 60px;
        padding: 0.75rem 0.25rem;
    }
    
    .upcoming-ticket-day {
        font-size: 1.5rem;
    }
    
    .upcoming-ticket-month {
        font-size: 0.8rem;
    }
    
    .upcoming-ticket-title {
        font-size: 1.1rem;
    }
    
    .upcoming-ticket-venue {
        font-size: 0.9rem;
    }
}

/* Responsive spécifique iPhone */
@media (max-width: 480px) {
    .upcoming-concerts-container {
        display: block !important;
        grid-template-columns: none !important;
        gap: 15px;
    }
    
    .upcoming-concert-ticket {
        margin-bottom: 15px;
    }
    
    .upcoming-ticket-content {
        padding: 1rem;
        gap: 1rem;
    }
    
    .upcoming-ticket-date {
        flex: 0 0 55px;
        padding: 0.5rem 0.25rem;
    }
    
    .upcoming-ticket-day {
        font-size: 1.3rem;
    }
    
    .upcoming-ticket-month {
        font-size: 0.75rem;
    }
    
    .upcoming-ticket-title {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .upcoming-ticket-venue {
        font-size: 0.85rem;
    }
}

/* Responsive pour le tiroir */
@media (max-width: 768px) {
    .drawer-content {
        width: 95%;
        max-width: 95%;
        height: calc(100vh - 80px);
        bottom: 5px;
    }
    
    .drawer-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .concert-detail-info {
        padding: 1.5rem;
    }
    
    .concert-detail-info .concert-title {
        font-size: 1.5rem;
    }
    
    .clickable-concert:hover {
        transform: translateY(-1px) scale(1.01);
    }
    
    /* Navigation responsive - soulignement à gauche sous le texte */
    .navbar-collapse .navbar-nav .nav-link {
        text-align: left;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .navbar-collapse .navbar-nav .nav-link::after {
        left: 1rem;
        transform: none;
        width: 0;
    }
    
    .navbar-collapse .navbar-nav .nav-link:hover::after {
        width: calc(100% - 2rem);
    }
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 25px;
    background: rgba(184, 158, 124, 0.1);
    border-radius: 25px;
    padding: 6px 8px;
    border: 1px solid rgba(184, 158, 124, 0.3);
    backdrop-filter: blur(10px);
}

.lang-link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid transparent;
    min-width: 32px;
    text-align: center;
    letter-spacing: 0.5px;
}

.lang-link:hover {
    color: #ffffff !important;
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

.lang-link.active {
    color: #1a1a1a !important;
    background: linear-gradient(135deg, #D4AF37 0%, #B89E7C 100%);
    border-color: #D4AF37;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.lang-separator {
    display: none; /* On supprime le séparateur pour un design plus propre */
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
        width: fit-content;
        margin: 10px auto 0;
    }
    
    .lang-link {
        font-size: 0.8rem;
        padding: 5px 10px;
        min-width: 28px;
    }
}

/* ===== STYLES GALERIE DÉPLACÉS DE GALLERY.JS ===== */

/* Centrage pour peu de photos sur la page d'accueil */
.gallery-centered {
    justify-content: center !important;
    gap: 1rem !important;
}

.gallery-centered .gallery-item {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
}

/* Filtres galerie */
.gallery-filters {
    margin-bottom: 2rem;
}

.filter-btn {
    background: rgba(184, 158, 124, 0.2);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* Cards galerie - Masonry adaptatif */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 280px;
    max-width: 100%;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
}

/* Formats spécifiques détectés automatiquement par JavaScript 
   Les classes .format-landscape, .format-portrait, .format-square 
   sont ajoutées dynamiquement selon le ratio des images */

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition-smooth);
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-action {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-gold);
    font-size: 1.5rem;
}

/* Lightbox avancée */
.advanced-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.advanced-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.advanced-lightbox .lightbox-overlay {
    background: rgba(0,0,0,0.95);
    padding: 20px;
}

.advanced-lightbox .lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.advanced-lightbox .lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(184, 158, 124, 0.8);
    border: none;
    color: var(--dark-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-info {
    text-align: center;
    color: var(--text-light);
}

.lightbox-title {
    color: var(--text-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.lightbox-description {
    margin-bottom: 15px;
}

.lightbox-counter {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive galerie */
@media (max-width: 768px) {
    .gallery-card.format-landscape {
        height: 160px;
    }
    
    .gallery-card.format-portrait {
        height: 250px;
    }
    
    .gallery-card.format-square {
        height: 200px;
    }
    
    .gallery-centered {
        gap: 0.5rem !important;
    }
}

@media (max-width: 576px) {
    .gallery-card.format-landscape {
        height: 140px;
    }
    
    .gallery-card.format-portrait {
        height: 220px;
    }
    
    .gallery-card.format-square {
        height: 180px;
    }
}
