/* ===== 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', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ===== TYPOGRAPHIE ===== */
.hero-title,
.footer-title {
  font-family: 'Dancing Script', cursive;
  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: 1rem 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%;
}

/* ===== BOUTONS ===== */
.btn-primary-gold {
  background: var(--gradient-primary);
  border: none;
  color: var(--dark-bg);
  font-weight: 500;
  padding: 12px 30px;
  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%;

}

/* Blocs de légende pour les images */
.bio-legend-block {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--primary-gold);
  padding: 1rem;
  position: relative;
  z-index: 2;
  margin-right: -15rem; /* Réduction du chevauchement */
  width: 320px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.legend-content {
  text-align: center;
}

.legend-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.legend-divider {
  width: 90px;
  height: 3px;
  background: var(--primary-gold);
  margin: 0 auto 1.5rem auto;
  border-radius: 2px;
}

.legend-description {
  font-size: 0.8rem;
  color: var(--text-dark);
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* Responsive pour les blocs de légende */
@media (max-width: 768px) {
  .bio-legend-block {
    margin-right: 0;
    margin-top: -1rem; /* Chevauchement vertical sur mobile */
    width: 100%;
    max-width: 320px;
  }
  
  .legend-title {
    font-size: 1.5rem;
  }
  
  .legend-divider {
    width: 70px;
    height: 2px;
  }
}


/* ===== 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(--text-muted);
  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(--text-light);
  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;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-shrink: 0;
    align-items: center;
}



.time-display {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

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

.time-separator {
    color: #999;
    margin-top:1rem;
}

/* 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;
    }
}

/* ===== 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;
  }
}
