@charset "UTF-8";
html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  /* make box-sizing global and avoid vw */
  box-sizing: border-box;
  width: 100%; /* changed from 100vw */
  height: 100%;
}

/* add global box-sizing rule near the top */
*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "museo", sans-serif;
  background-color: #252049;
  color: white;
  display: flex;
  flex-direction: column;
  width: 100%; /* changed from 100vw */
  min-height: 100vh;
  padding: 0;
  overflow-x: hidden; /* optional fallback to hide tiny overflows */
}
body a {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  flex-wrap: wrap;
}

header {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  background-color: #252049;
}

main {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%; /* changed from 100vw */
  margin: 0;
}

h1 {
  font-style: italic;
  font-size: 5em;
  font-weight: 900;
  margin: 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: -10px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 100;
}
nav a, nav img {
  margin: 1em;
}
nav img {
  max-height: 4em;
  height: auto;
}

.links-nav {
  display: flex;
  flex-direction: row;
  gap: 1em;
}

nav a, .lp-podcast-link-a {
  color: #ffffff;
  text-decoration: none;
  padding: 0.5em 1em;
  border: 2px solid #ffffff;
  border-radius: 5px;
  background-color: transparent;
  transition-duration: 0.3s;
  transform: scale(1);
  font-size: 1em;
}

nav a:hover, .lp-podcast-link-a:hover {
  background-color: #ffffff;
  padding: 0.5em 1em;
  color: #252049;
  transition-duration: 0.3s;
  border: 2px solid #ffffff;
  border-radius: 5px;
}

section {
  padding: 10em;
  margin: 0;
}

#lp-section-bravo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 3em 12em 0 10em;
}
#lp-section-bravo img {
  max-width: 50%;
  height: auto;
  /* play once and keep final state */
  animation: position 2s ease-in 0.2s forwards;
}

@keyframes position {
  from {
    margin-top: 100%;
    height: 0%;
  }
  to {
    margin-top: 0;
    height: 100%;
  }
}
#lp-title-bravo {
  display: flex;
  flex-direction: column;
  max-width: 25em;
  justify-content: end;
  align-items: left;
  margin-bottom: 5em;
}

#lp-podcast {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  background-color: #000035;
  align-items: center;
  text-align: center;
}
#lp-podcast .lp-podcast-text {
  display: flex;
  flex-direction: column;
  color: #DEF09E;
  align-items: center;
  max-width: 40em;
}
#lp-podcast .lp-podcast-text h1 {
  font-size: 5em;
  margin-bottom: 0;
}
#lp-podcast .lp-podcast-text h2 {
  font-size: 2em;
  margin-top: 0;
  font-style: italic;
  font-weight: 300;
}
#lp-podcast .lp-podcast-text h3 {
  margin-bottom: 0;
  font-style: italic;
}
#lp-podcast .lp-podcast-text p {
  margin-top: 1em;
  font-weight: 300;
}

/* ===== STYLES COMMUNS ===== */
.lp-carousel-wrapper {
  max-width: 70%;
  margin: 2rem auto;
  position: relative;
}

.lp-carousel-container {
  overflow: hidden;
  border-radius: 20px;
}

.lp-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  border-radius: 50px;
  box-shadow: 0 0px 25px rgba(242, 255, 165, 0.095);
  color: white;
}

.lp-carousel-slide {
  min-width: 100%; /* explicit min-width — required for the carousel, keep it */
  box-sizing: border-box;
  max-height: 100%;
  padding: 0;
}

/* Boutons de navigation (en dehors) */
.lp-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(222, 240, 158, 0.5);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.2s;
  z-index: 10;
  color: black;
}

.lp-carousel-btn:hover {
  background: rgba(222, 240, 158, 0.9);
  transform: translateY(-50%) scale(1.2);
}

.lp-prev {
  left: -100px; /* fine on desktop, but override in responsive rules (you already do) */
}

.lp-next {
  right: -100px;
}

/* Compteur pour le carrousel images */
.lp-carousel-counter {
  text-align: center;
  margin-top: 0.5rem;
  font-family: Arial, sans-serif;
  color: #666;
}

/* ===== STYLES POUR LE CARROUSEL VIDÉOS ===== */
.lp-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Ratio 16:9 */
  height: 0;
  overflow: hidden;
}

.lp-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
}

.lp-slide-content {
  text-align: center;
  background-color: #160068;
  padding: 1rem;
  border-radius: 0 0 20px 20px;
}

.lp-slide-content h3 {
  font-weight: 500;
  margin-block: 0.5em;
}

.lp-slide-content p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 300;
}

#lp-others {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #EDB666;
  color: #252049;
  padding: 0;
  gap: 0;
}
#lp-others span {
  max-width: 40em;
}
#lp-others h2 {
  margin-top: 2rem;
  margin-bottom: 0;
  font-size: 2em;
}

.lp-playlist {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 2rem;
  gap: 5rem;
  padding: 10em 6em;
}
.lp-playlist p {
  max-width: 40em;
}

.lp-creches {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 5rem;
  padding: 10em;
  background-color: #ffffff;
}
.lp-creches span {
  max-width: auto;
  color: #252049;
}

.flickr-embed {
  max-width: 300px;
  height: 400px;
  border-radius: 20%;
}

#lp-flickr {
  width: 300px;
  height: 400px;
  background-color: #ffffff;
}

.lp-sv4 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 3rem;
  justify-content: center;
  width: 100%;
  background-color: #160068;
  padding: 10em 6em;
  color: #ffffff;
}
.lp-sv4 img {
  max-width: 10em;
  height: auto;
}
.lp-sv4 .lp-sv4-left {
  transform: rotate(-10deg);
  transition-duration: 0.3s;
}
.lp-sv4 .lp-sv4-right {
  transform: rotate(10deg);
  transition-duration: 0.3s;
}
.lp-sv4 a {
  transition-duration: 0.3s;
}
.lp-sv4 a :hover {
  transform: rotate(0deg);
  transition-duration: 13s;
}

.lp-denier {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
  background-color: #252049;
  padding: 10em 6em;
  color: #ffffff;
  text-align: center;
  gap: 5rem;
}

footer {
  text-align: center;
  padding: 10px 0;
  background: #252049;
  color: #ffffff;
  position: relative;
  bottom: 0;
  width: 100%;
}

.lp-desktop {
  display: flex;
}

.lp-responsive {
  display: none;
}

.lp-calameo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.lp-calameo iframe {
  border-radius: 20px;
}
.lp-calameo a {
  color: white;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
  html {
    width: 100%;
  }
  body {
    width: 100%;
  }
  h1 {
    font-size: 2.5em;
  }
  nav {
    gap: 0.1em;
    width: 100%;
  }
  nav .lp-nav-sv4, nav .lp-nav-denier {
    display: none;
  }
  nav a {
    width: 100%;
    text-align: center;
    padding: 0.4em 0.5em;
    font-size: 1em;
  }
  section {
    padding: 2em 1em;
  }
  #lp-section-bravo {
    align-items: center;
    flex-direction: column;
    padding: 7em 1em 0 1em;
  }
  #lp-section-bravo img {
    width: 100%;
    max-width: 600px;
  }
  #lp-title-bravo {
    max-width: 100%;
    margin: 2em;
  }
  #lp-podcast .lp-podcast-text {
    margin: 2em;
  }
  #lp-podcast .lp-podcast-text h1 {
    font-size: 3em;
  }
  #lp-podcast .lp-podcast-text h2 {
    font-size: 1.5em;
  }
  .lp-carousel-wrapper {
    margin: 0 2em;
    max-width: 100%;
    padding: 0 1em;
  }
  .lp-prev {
    left: -18px;
  }
  .lp-next {
    right: -18px;
  }
  .lp-carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  #lp-others {
    flex-direction: column;
    text-align: center;
  }
  .lp-playlist {
    flex-direction: column;
    gap: 2rem;
    padding: 5em 2em;
  }
  #lp-flickr {
    width: 280px;
    height: 360px;
    background-color: #ffffff;
  }
  .lp-creches {
    flex-direction: column-reverse;
    gap: 2rem;
    padding: 5em 0.5em;
  }
  .lp-sv4 {
    flex-direction: column;
    gap: 1.5rem;
    padding: 5em 2em;
  }
  .lp-denier {
    flex-direction: column;
    padding: 5em 2em;
  }
  .lp-responsive {
    display: flex;
  }
  .lp-desktop {
    display: none;
  }
}
@media (max-width: 562px) {
  h1 {
    font-size: 1.8em;
  }
  section {
    padding: 1em;
  }
  nav a {
    font-size: 0.8em;
    padding: 0.7em 0.9em;
  }
}/*# sourceMappingURL=styles.css.map */