body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
    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:#F08605;
    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 h6 {
    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 h6 {
        font-size: 80px;
    }
  }

img {
    width: 100%;
    height: 700px;
}



/* Section Musiques */
.container {
    padding: 20px;
}

.section-title {
    margin-top: 20px;
    font-size: 40px;
    text-align: center;
    color: #F08605;
}

.song-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.song-card {
    background: #F08605;
    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;
}

.song-card:hover {
    transform: scale(1.1);
}

.footer {
    background-color: #F08605;     
    color: #ffffff;                
    padding: 40px 20px;            
    position: relative;
    width: 100%;
    box-sizing: border-box;
    height: auto;        
}

h4 {
    color: #ffffff;
}

.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;
}
 
