html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #000;
  margin: 0;
  padding: 0;
}

.hero-wrapper header {
  position: sticky; /* Rendre l'en-tête sticky */
  top: 0;
  height: 200px;
  overflow: hidden;
  background-color: #ffffff;
  z-index: 1000; /* S'assurer que l'en-tête est au-dessus des autres éléments */
  transition: height 0.2s ease, background-color 0.2s ease; /* Animation fluide */
}

.hero-wrapper header.scrolled {
  height: 100px; /* Réduire la hauteur lors du défilement */
  background-color: rgba(255, 255, 255, 0.95); /* Fond légèrement transparent */
  
}

.header-diagonal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  clip-path: polygon(90% 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 0.3s ease; /* Animation pour le triangle */
}

.hero-wrapper header.scrolled .header-diagonal {
  clip-path: none; /* Supprimer l'effet diagonal dans l'état réduit */
}

.header-content {
  position: absolute;
  top: 20px;
  left: 40px;
  color: #000;
  max-width: 50%;
  z-index: 10;
  transition: transform 0.3s ease, top 0.3s ease; /* Animation fluide */
}

.hero-wrapper header.scrolled .header-content {
  top: 10px; /* Réduire la position verticale */
  transform: scale(0.8); /* Réduire légèrement la taille */
  max-width: 40%;
}

.header-logo {
  height: 80px;
  width: auto;
  margin: 45px 0px -20px 5px;
  transition: height 0.3s ease, margin 0.3s ease; /* Animation pour le logo */
}


.header-logo header.scrolled {
  
  margin: 45px 0px -10px 5px;
 
}

.hero-wrapper header.scrolled .header-logo {
  height: 45px; /* Réduire la taille du logo */
  margin: 25px 0px -15px 5px;
}

.header-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: -90px 0px 0px 95px;
  color: #000000;
  transition: font-size 0.3s ease, margin 0.3s ease; /* Animation pour le titre */
}

.hero-wrapper header.scrolled .header-content h1 {
  font-size: 2rem; /* Réduire la taille du titre */
  margin: -50px 0px 0px 60px;
}

.section-title-tagline {
  font-size: 1.5em;
  color: #000000;
  margin-top: -10px;
  padding-left: 100px;
  transition: font-size 0.3s ease, padding 0.3s ease; /* Animation pour le sous-titre */
}

.hero-wrapper header.scrolled .section-title-tagline {
  font-size: 1em;
  padding-left: 65px;
}

.header-content p {
  font-size: 1.3rem;
  color: #000000;
  margin-top: 0px;
  margin-left: 100px;
  background-color: #FFE600;
  padding: 0.2em 0.3em;
  border-radius: 3px;
  transition: opacity 0.3s ease; /* Animation pour le texte */
}

.hero-wrapper header.scrolled .header-content p {
  opacity: 0; /* Masquer le texte dans l'état réduit */
}

.lang-switcher-header {
  position: absolute;
  top: 45px;
  right: 40px;
  z-index: 1000;
  transition: top 0.3s ease; /* Animation pour les boutons de langue */
}

.hero-wrapper header.scrolled .lang-switcher-header {
  top: 45px; /* Ajuster la position */
}

.lang-switcher-header button {
  background: none;
  border: none;
  color: #000000;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 0px;
}

.section-light, .section-dark {
  padding: 65px 10vw;
}

.section-light {
  background: #fff;
  color: #000;
}

.section-dark {
  background: #11131F;
  color: #F5F5F5;
}

.skew-divider-white, .skew-divider-blue {
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
}

.skew-divider-white svg, .skew-divider-blue svg {
  display: block;
  width: 100%;
  height: 100%;
}

.skew-divider-white {
  background: #fff;
}

.skew-divider-blue {
  background: #11131F;
}

h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

p, li {
  font-size: 1.3rem;
  line-height: 1.6;
}

ul {
  list-style: disc;
  padding-left: 20px;
}

.header-cta {
  margin-top: 40px;
    display: inline-block;
  background: #355CFF;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
}

.header-cta a {
  display: inline-block;
  background: #355CFF;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.radio-card {
  background-color: #0E111E;
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.radio-card:hover {
  transform: translateY(-4px);
  background-color: #151929;
  border-color: #355CFF;
}

.radio-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.radio-card i {
  font-size: 1.8rem;
  color: #355CFF;
}

.radio-card p {
  font-size: 0.95rem;
  color: #C1C1C1;
}

.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
}

.radio-card.jazz .card-accent { background-color: #33ff44; }
.radio-card.hiphop .card-accent { background-color: #FFE600; }
.radio-card.electro .card-accent { background-color: #ef16ef; }
.radio-card.ambient .card-accent { background-color: #0044ff; }

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #0B0F1A;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #0B0F1A;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form button {
  background: #355CFF;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #2a4ccc;
}

.section-title {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 1.5rem;
}

.section-title.has-underline:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #007bff;
}

#clients {
  background-color: #f5f5f5;
  color: #000000;
  padding: 65px 10vw;
}

#clients h2 {
  margin-bottom: 60px;
}

.logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 55px;
}

.logos-container img {
  max-width: 200px;
  filter: grayscale(100%);
  transition: transform 0.3s ease;
}

.logos-container img:hover {
  transform: scale(1.05);
}

#bio {
  background-color: #000000;
  display: flex;
  justify-content: center;
  color: #ffffff;
  padding: 65px 10vw;
}

#bio h2 {
  text-align: left;
  justify-content: left;
}

.bio-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 40px;
}

.bio-photo {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-photo img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.bio-text {
  flex: 2 1 400px;
}

.bio-text h2 {
  margin-bottom: 60px;
  text-align: left;
}

.bio-text p {
  margin-bottom: 20px;
  color: #cccccc;
}

.bio-text h2 {
  color: #eeeeee;
}

.bio-text ul {
  list-style: disc;
  margin-left: 20px;
}

@media (max-width: 1100px) {
  .hidden-mobile-section {
    display: none;
  }

  .section-title.has-underline:after {
    width: 40px;
    left: 7%;
  }

  .hero-wrapper header {
    height: 150px;
  }

  .hero-wrapper header.scrolled {
    height: 80px; /* Réduire encore plus sur mobile */
  }

  .header-content {
    top: 15px;
    left: 20px;
    max-width: 80%;
  }




  .header-content h1 {
    font-size: 2.5rem;
    margin: 0px 0px 0px 0px;
  }

  .hero-wrapper header.scrolled .header-content h1 {
    font-size: 1.5rem;
    margin: 0px 0px 0px 0px;
  }

  .header-content p {
    font-size: 1rem;
    margin-top: 10px;
    margin-left: 0px;
    background-color: #FFE600;
    padding: 0.2em 0.3em;
    border-radius: 3px;
  }

  .lang-switcher-header {
    top: 25px;
    right: 5px;
  }

  .lang-switcher-header button {
    font-size: 0.9rem;
  }

  .header-logo {
    height: 65px;
    margin: 45px 0px -59px -10px;
  }

  .hero-wrapper header.scrolled .header-logo {
    height: 40px;
    margin: 20px 0px -30px -10px;
  }

  .section-title-tagline {
    font-size: 1.2em;
    margin-top: -10px;
    padding-left: 0px;
  }

  .hero-wrapper header.scrolled .section-title-tagline {
    font-size: 0.9em;
    padding-left: 0px;
  }

  .section-light, .section-dark {
    padding: 25px 10vw;
  }
}