body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #ffffff;
    font-family: "Parkinsans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
            
}


.navbar {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    padding: 10px 20px;
    color: rgb(255, 255, 255);
    z-index: 1000; 
}

.navbar h1 {
    margin: 0;
    font-size: 24px;
}

.navbar div {
    list-style: none;
    margin: 20px;
    padding: 0;
    display: flex;
}

.navbar div li {
    margin: 0 10px;
}

.navbar div li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: bold;
}




footer {
  position: relative; 
  width: 100%;
  height: 700px; 
  
}
@media screen and (max-width: 768px) {
    footer {
      height: auto; 
      padding: 20px; 
      flex-direction: column; 
    }
  }

.imga {
  width: 100%;
  height: 100%; 
  object-fit: cover; 
}

footer h2 {
  position: absolute; 
  top: 50%;
  left: 50%; 
  transform: translate(-50%, -50%); 
  margin: 0; 
  color: rgb(255, 255, 255); 
  font-size: 200px; 
  font-weight: bold; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
  text-align: center; 
}
@media screen and (max-width: 768px) {
    footer h2 {
        font-size: 80px;
    }
  }
.titre {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #000000;
}
.catégorie {
    display: flex; 
    justify-content: center; 
    align-items: center; 
  }
  
  .catégorie a {
    text-decoration: none;           
    display: inline-flex;            
    justify-content: center;         
    align-items: center;             
}

.catégorie a img {
    width:   60%;
    height: auto;
    border-radius: 24px;
    transition: transform 0.3s ease, width 0.3s ease;
}

.catégorie a img:hover {
    transform: scale(1.1);
}

/* Section Musiques */
.container {
    padding: 20px;
}


.song-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.song-card {
    background: #000000;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease, width 0.3s ease;
}

.song-card video {
    width: 100%;
    height: 350px;
    border-radius: 6px;
}

.song-card h3 {
    padding: 5px;
    font-size: 16px;
    text-decoration: none;
    color: #ffffff;
}


.song-card:hover {
    transform: scale(1.1);
}

.footer {
    background-color: #000000;     
    color: #ffffff;                
    padding: 40px 20px;            
    position: relative;
    width: 100%;
    box-sizing: border-box;
    height: auto;        
}


.playlist {
    text-align: center; 
    margin: 20px 0;
}

.playlist a {
    display: inline-block; 
    margin: 40px;
    text-decoration: none; 
}

.playlist img {
    width: 300px; 
    height: auto; 
    border-radius: 14px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.playlist a img:hover {
    transform: scale(1.1);
}

.footer-content {
    display: flex;                 
    justify-content: space-between; 
    flex-wrap: wrap;                
    max-width: 1200px;             
    margin: 0 auto;               
}


.footer-section {
    flex: 1 1 200px;               
    margin: 10px;
}

.footer-section h5 {
    font-size: 20px;                
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-section p {
    font-size: 14px;                
}

.footer-section ul {
    list-style-type: none;          
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;                  
}


.footer-bottom {
    text-align: center;             
    margin-top: 20px;              
    font-size: 14px;               
}

.footer-bottom p {
    margin: 0;
}
