* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Julius Sans One', Arial, sans-serif;
  font-style: normal;
  color: #143D5B;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header & Nav */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0;
  height: 7.3w;

}

.nav a {
  color: #10326c;
  text-decoration: none;
  margin: 0 0.5vw;
  position: relative;
  padding-bottom: 0vw;
  font-family: 'Julius Sans One';
  transition: color 0.3s ease;
  font-size: 1.5vw;
}

.t-n:hover {
  color: #143D5B;
  text-decoration: underline;
  text-underline-offset: 10px;
}

.t-n::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 15px;
  background: url('images/logos/mosaic-pattern.png') no-repeat center bottom / contain;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.t-n:hover::after {
  transform: scaleX(1);
}

.logo-nav  {width: 100px;
  
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  z-index: 1001;
  border-radius: 14px;
  padding: 0.5rem 0;
}

.dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
  color: #10326c;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-content a:hover {
  color: #2798e9;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.arrow {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
}

.dropdown .arrow {
  margin-left: 6px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}
/* Mobile Header */
.mobile-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.mobile-logo img {
  width: 100px;
  height: 45px;
}

.menu-toggle {
  cursor: pointer;
}

.menu-toggle svg {
  height: 30px;
  width: 30px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 55px;
  left: 0;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  padding: 1rem;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;

}

.mobile-nav a {
  padding: 0.75rem 1rem;
  color: #143D5B;
  text-decoration: none;
  font-family: 'Julius Sans One';
  font-size: 1rem;
  font-weight: normal;
  border-bottom: 1px solid #eee;
}

.mobile-nav a:last-child {
  border-bottom: none;
  
}
.mobile-nav a:hover {
  color: #2798e9;
}


.mobile-nav.open {
  transform: translateX(0%);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
}

/*conception de la page*/
.album-list {
  max-width: 90vw;
  margin: auto;
  padding: 3vw 2vw;
  background-color: transparent;
}

.album {
  display: flex;
  margin-bottom: 3vw;
  background-color: transparent;
  border-radius: 1vw;
  overflow: hidden;
  padding-bottom: 10vw;
  
}

.cover {position: relative;
  flex: 0 0 25vw;
  text-align: center;
  background-color:transparent;
  padding: 2vw;
  border-radius: 10vw;

}


.cover img {position: sticky;
  width: 100%;
  border-radius: 0vw;
}

.tracks {position: relative;
  flex: 1;
  padding: 2vw;

}
h3{
  font-size: 2vw;
}
.tracks h4 {
  margin-bottom: 1.5vw;
  color: #143D5B;
}

.tracks ul {
  list-style: none;
  padding: 0;
  color: #143D5B;
}

.tracks li {
  margin-bottom: 1vw;
  color: #143D5B;
  border-bottom: 0.2vw solid #143D5B;
  padding-bottom: 1.5vw;
  display: inline-block; 
  
  
  
}



audio {
  width: 100%;
  color: #143D5B;
}
.tracks ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1vw;
}

.track-title {
  flex: 1;
  margin-right: 2vw;
  font-weight: normal;
  color: #143D5B;
  font-size: 1.6vw;
}

.track-title:hover {
  flex: 1;
  margin-right: 2vw;
  font-weight: 500;
  color: #2798e9;
  cursor: pointer;
}

audio {
  flex: 1;
  max-width: 30vw;
}

audio::-webkit-media-controls-panel {
  background-color: #fff;
  color: #143D5B;
  
}

audio {
  width: 5vw;
  height: 3.5vw;
  border-radius: 8px;
}




.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: space-between;
  background-color: #143D5B;
  color: #fff;
  padding: 2vw 1vw;
  position: relative;
  height: 13vw;
}

.ft-part1 {
  position: relative;
  width: 13vw;
}

.ft-part1 img {
  position: absolute;
  width: 100%;
  right: 7.5vw;
  top: -2vw;
  pointer-events: none;
}

.ft-part2 {
  padding-left: 0vw;
  flex: 2 1 24vw;
  text-align: left;
  font-size: 1.4vw;
  
}

.ft-adress {
  padding-bottom: 1.4vw;
  text-align: left;
  left: 10vw;
}

.ft-tel {
  padding-bottom: 2vw;
  text-align: left;
}

.footer-contact .logo-footer {
  position: absolute;
  top: 1vw;
  right: 3vw;
  width: 11vw;
}

.logo-footer {
  flex: 2;
  width: 11vw;
  margin-top: 1vw;
  pointer-events: none;
}

/* Images zoomables */
img.zoomable {
  cursor: pointer;
  transition: transform 0.3s ease;
  max-width: 100%;
  height: auto;
  border-radius: 0px;
}

/* Lightbox zoom */
.zoom-container {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.zoom-container img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.zoom-container.active {
  display: flex;
}

/* Media Queries */
@media (max-width: 768px) {
  .header .nav {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
  
  
  


  
  

@media (min-width: 769px) {
  .mobile-header,
  .mobile-nav,
  .menu-overlay {
    display: none !important;
   }
}

#global-player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #143D5B;
  color: #fff;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

#global-player.hidden {
  display: none;
}

.player-info {
  flex: 1;
  padding-right: 1rem;
}

#current-track-title {
  font-weight: bold;
  font-size: 1rem;
}

#global-player audio {
  flex-shrink: 0;
  max-width: 300px;
}



/*zelij*/

.zelij1.zelij2.zelij3.zelij4.zelija5.zelija6.zelija7.zelija8.zelij9.zelij10.zelij11{
  position: relative;
  width: 22vw;
  
  

}

.zelij1 img{
position: absolute;
top: 10vw;
left: 0vw;
width: 20%;
z-index: -1;
}
.zelij2 img{
position: absolute;
top: 8vw;
left: 80vw;
width: 20%;
z-index: -1;

}


.zelij3 img{
position: absolute;
top: 90vw;
left: 0vw;
width: 30%;
}
.zelij4 img{
position: absolute;
top: 200vw;
left: 70vw;
width: 30%;


}
.zelij5 img{
position: absolute;
top: 265vw;
left: 0vw;
width: 30%;
z-index: -1;
}
.zelij6 img{
position: absolute;
top: 375vw;
left: 70vw;
width: 30%;

}
.zelij7 img{
position: absolute;
top: 435vw;
left: 0vw;
width: 30%;
z-index: -1;
}
.zelij8 img{
position: absolute;
top: 525vw;
left: 70vw;
width: 30%;

}
.zelij9 img{
position: absolute;
top: 585vw;
left: 0vw;
width: 30%;
z-index: -1;
}
.zelij10 img{
position: absolute;
top: 670vw;
left: 70vw;
width: 30%;

}

.zelij11 img{
position: absolute;
top: 740vw;
left: 0vw;
width: 30%;
z-index: -1;
}




/*lign width*/
.fst{
  border-top: 0.2vw solid #143D5B;
  
}
.l1{
  
  width: 53vw; 
}
.l2{
  width: 48vw; 
}

.l3 {
  width: 43vw; 
}

.l4{
  width: 45vw;
}
.l5{
  width: 50vw; 
}
.l6{
  width: 55vw; 
}
.l7{
  width: 53vw; 
}
.l8{
  width: 47vw; 
}
.l9{
  width: 42vw; 
}

.l10{
  width: 46vw; 
}
.l11{
  width: 50vw; 
}
.l12{
  width: 54vw; 
}
.l13{
  width: 40vw; 
}

.l14{
  width: 38vw; 
}


.nouveau-album{
  position: relative;
   display: flex;
   flex-direction: row;
  align-items:center;
  left: 0vw;
  justify-content: space-between;
  width: 20vw;
  padding-bottom: 10vw;
  

}
.alb1 h3{
  font-size: 3vw;
  text-align: center;
}
.alb2 h3{
  font-size: 3vw;
  text-align: center;
}


.alb1{position: absolute;
  left: 50vw;
  right: 10vw;
  text-align: center;

}
.alb2{
  left: 80vw;
  text-align: center;
  z-index: 1;
}
.nouveau-album img{
   padding: 5vw;
  width: 40vw;
  
}

@media (max-width: 768px) {
  .track-title {
    font-size: 3vw;
    font-weight: bold;
  }

  audio {
    max-width: 60vw;
  }

  .cover h3{
    font-size: 3vw;
    font-weight: bold;
  }

  .nouveau-album{
  position: relative;
   display: flex;
   flex-direction: row;
  align-items:first flex-start;
  justify-content: space-between;
  width: 70vw;
  padding-bottom: 10vw;
  left: -5vw;
  

}

.alb1{position: absolute;
  left: 45vw;
  right: 10vw;
  text-align: center;
  z-index: 1;
  
}
.alb2{
  left: -60vw;
  text-align: center;
  z-index: 1;

}
.alb1 h3{
  font-size: 3vw;
  text-align: right;
}
.alb2 h3{
  font-size: 3vw;
  text-align: right;
}
.nouveau-album img{
   padding: 5vw;
  width: 49vw;
  z-index: 1;
  
}
.album {
  flex-direction: column;

}




.zelij1 img{
position: absolute;
top: 10vw;
left: 0vw;
width: 20%;
z-index: -4;

}

.zelij2 img{
position: absolute;
top: 8vw;
left: 80vw !important; /* ajuste le centrage mobile */
width: 20%;
z-index: -4;

}
.zelij3 img{ display: none;}
.zelij4 img{ display: none;}
.zelij5 img{ display: none;}
.zelij6 img{ display: none;}
.zelij7 img{ display: none;}
.zelij8 img{ display: none;}
.zelij9 img{ display: none;}
.zelij10 img{ display: none;}
.zelij11 img{ display: none;}
.cover{
  z-index: -3;
}

.l1{
  
  width: auto; 
}
.l2{
  width: auto; 
}

.l3 {
  width: auto; 
}

.l4{
  width: auto;
}
.l5{
  width: auto; 
}
.l6{
  width: auto; 
}



}





