  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
          
  body {
  background-color: #f9f9f9;
  color: #000;
  }
  
   
  header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 100;
  }
        
  header .logo {
  font-size: 32px;
  font-weight: bold;
  }
                
  header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  }
              
  header nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  padding: 5px 0;
  cursor: pointer;
  white-space: nowrap;
  }
              
  .home-icon {
  display: block;
  width: 20px;
  height: 20px;
  }
                
  header nav a, .genres-btn {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  padding: 5px 0;
  cursor: pointer;
  }
                
  .genres {
  position: relative;
  display: flex;
  align-items: center;
  }
                
  .dropdown {
  display: none;
  position: absolute;
  top: 30px;
  right: 0;
  background-color: #fff;
  border: 1px solid #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  min-width: 200px;
  padding: 10px 0;
  }
                
  .dropdown.show {
  display: block;
  }
                
  .dropdown-item {
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  position: relative;
  }
                
  .dropdown-item:hover {
  background-color: #f5f5f5;
  }
                
  .sub-dropdown {
  display: none;
  position: absolute;
  right: 100%;
  top: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 10px 0;
  border-radius: 5px;
  }
                
  .sub-dropdown.show {
  display: block;
  }
         
  .sub-dropdown a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
  font-size: 17px;
  }
                
  .sub-dropdown a:hover {
  background-color: #f0f0f0;
  }
                
  .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  }
                
  .hamburger .line {
  width: 100%;
  height: 3px;
  background-color: #333;
  }
              
  @media (max-width: 768px) {
  header nav {
  display: none;
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
  background-color: #fff;
  border-top: 1px solid #ddd;
  z-index: 100;
  flex-direction: column;
  }
                
  header nav.open {
  display: flex;
  }
       
  header nav a {
  padding: 10px 20px;
  width: 100%;
  border-bottom: 1px solid #ddd;
  }
          
  .hamburger {
  display: flex;
  }
          
  .genres {
  justify-content: flex-start;
  width: 100%;
  }
                
  .dropdown {
  display: none;
  position: static;
  box-shadow: none;
  }
                
  .dropdown.show {
  display: block;
  position: static;
  }
              
  .dropdown-item {
  position: relative;
  }
              
  .sub-dropdown {
  left: 100%;
  top: 0;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 10px 0;
  border-radius: 5px;
  }
              
  .sub-dropdown.show {
  display: block;
  }
            
  .sub-dropdown a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
  font-size: 17px;
  }
              
  .sub-dropdown a:hover {
  background-color: #f0f0f0;
  }
}
  
  
  .about-band {
  display: flex;
  width: 100%;
  height: 850px;
  position: relative;
  }

  .about-band::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000000;
  z-index: 2;
  }
      
  .left-block {
  width: 40%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  }
      
  .left-block h2 {
  font-family: "Aboreto", serif;
  font-weight: 900;
  font-size: 54px;
  color: #ddd;
  text-align: center;
  padding: 50px;
  line-height: 1.5;
  }

  .left-block::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, #ffffff, #666, #ffffff);
  border-radius: 2px;
  }
  
  .right-block {
  width: 60%;
  display: flex;
  flex-direction: column;
  }
      
  .image-container {
  height: 65%;
  }
      
  .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
      
  .text-container {
  height: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  text-align: left;
  }

  .text-container p {
  font-family: 'Cormorant Unicase', serif;
  font-size: 20px;
  line-height: 1.4;
  }


  .albums-section {
  background-color: #000000df;
  padding: 50px;
  position: relative;
  }

  .albums-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  z-index: 2;
  }
      
  .albums-section h2 {
  font-family: "Ruslan Display", serif;
  font-weight: 100;
  font-size: 52px;
  color: #ffffff;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  }
      
  .albums-container {
  display: flex;
  justify-content: center;
  gap: 100px;
  }
    
  .album {
  text-align: center;
  transition: transform 0.4s ease-in-out;
  cursor: pointer; 
  }
      
  .album:hover {
  transform: translateY(-10px);
  }
      
  .album-image {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
  display: block;
  margin: 0 auto;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  }

  .album:hover .album-image img {
  transform: scale(1.1) rotate(3deg);
  }
      
  .album:hover .album-image {
  box-shadow: 0 0 25px rgb(255, 255, 255);
  }
      
  .album-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 0;
  object-fit: cover;
  transition: transform 0.5s ease;
  }

  .album h3 {
  font-family: "Fahkwang", serif;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  margin: 10px;
  }
      
  .album p {
  font-family: "EB Garamond", serif;
  font-size: 18px;
  line-height: 1.4;
  color: #ffffffb5;
  }
      
  .album hr {
  margin: 20px auto;
  width: 80%;
  border: none;
  border-top: 1px solid #ccc;
  }


  .music-section {
  padding: 80px 50px;
  background-image: url('../../images/electronic/Daft_Punk_page/music/music_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  }
      
  .music-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  z-index: 2;
  }
      
  .music-section h2 {
  font-family: "Ruslan Display", serif;
  font-size: 52px;
  color: #ffffff;
  margin-bottom: 10px;
  }
      
  .music-section h3 {
  font-family: "EB Garamond", serif;
  font-size: 24px;
  color: #ffffffb5;
  margin-bottom: 50px;
  }
      
  .music-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  }
      
  .music-card {
  width: 300px;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  cursor: pointer;
  }
      
  .music-card-center {
  width: 350px;
  transform: scale(1.1);
  }
      
  .music-card:hover {
  transform: translateY(-10px);
  }
      
  .music-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  }
      
  .music-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  }
      
  .music-card:hover .music-image img {
  transform: scale(1.1);
  }
      
  .music-card h4 {
  font-family: "Fahkwang", serif;
  font-size: 22px;
  margin: 15px 0 10px;
  color: #ffffff;
  }
      
  .music-card p {
  font-family: "EB Garamond", serif;
  font-size: 18px;
  color: #ffffffb5;
  margin-bottom: 20px;
  }
      
  .music-btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 18px;
  text-decoration: none;
  background-color: #000;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  }
      
  .music-btn:hover {
  background-color: #ff7f00;
  }
      
      
  footer {
  padding: 40px 60px;
  background-color: #222;
  color: #fff;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  }
                
  footer .contact-info {
  margin-bottom: 30px;
  }
                
  footer .contact-info p {
  font-size: 22px;
  line-height: 1.4;
  margin: 10px 0;
  }
              
  footer .social-media {
  margin-bottom: 30px;
  }
                
  footer .social-media a {
  margin: 0 15px;
  font-size: 21px;
  text-decoration: none;
  color: #f9f9f9;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
  }
                
  footer .social-media a:hover {
  color: #ff7f00;
  }
          
  footer .contact-icon {
  margin-right: 7px;
  }
                
  footer .newsletter {
  margin-bottom: 30px;
  }
                
  footer .newsletter h3 {
  font-size: 24px;
  margin-bottom: 15px;
  }
                
  footer form {
  display: flex;
  justify-content: center;
  gap: 10px;
  }
                
  footer input[type="email"] {
  padding: 12px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  width: 300px;
  }
                
  footer button {
  padding: 12px 25px;
  font-size: 18px;
  border: solid 1px #f9f9f9;
  border-radius: 4px;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  }
                
  footer button:hover {
  background-color: #ff7f00;
  }
                
  footer .footer-info p {
  font-size: 17px;
  margin: 5px 0;
  }
  
  
  @media (max-width: 768px) {
  header {
  padding: 10px 15px;
  }
  
  header .logo {
  font-size: 24px;
  }
  
  header nav {
  display: none;
  flex-direction: column;
  text-align: center;
  }
  
  header nav.open {
  display: flex;
  }
  
  .hamburger {
  display: flex;
  }
  
  .about-band {
  flex-direction: column;
  height: auto;
  }
  
  .left-block {
  width: 100%;
  padding: 20px;
  }
  
  .left-block h2 {
  font-size: 34px;
  }
  
  .right-block {
  width: 100%;
  }
  
  .image-container {
  height: 300px;
  }
  
  .text-container {
  padding: 20px;
  }
  
  .albums-section h2 {
  font-size: 38px;
  }

  .albums-container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  }
  
  .album {
  width: 100%;
  }
  
  .album-image {
  width: 200px;
  height: 200px;
  }
  
  .album h3 {
  font-size: 16px;
  }
  
  .album p {
  font-size: 14px;
  }
  
  .music-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  }
  
  .music-card {
  width: 90%;
  max-width: 300px;
  }
  
  .music-card-center {
  width: 100%;
  }
  
  .music-card h4 {
  font-size: 18px;
  }
  
  .music-card p {
  font-size: 14px;
  }
  
  footer {
  padding: 20px 30px;
  }
            
  footer .newsletter input[type="email"] {
  width: 100%;
  }
            
  footer button {
  width: 100%;
  }
}
  
  
  @media (max-width: 1024px) {
  header {
  padding: 15px 20px;
  }
  
  header .logo {
  font-size: 28px;
  }
  
  .about-band {
  flex-direction: column;
  height: auto;
  }
  
  .left-block {
  width: 100%;
  padding: 30px;
  }
  
  .left-block h2 {
  font-size: 42px;
  }
  
  .right-block {
  width: 100%;
  }
  
  .image-container {
  height: 450px;
  }
  
  .text-container {
  padding: 30px;
  }
  
  .text-container p {
  font-size: 18px;
  }
  
  .albums-container {
  flex-wrap: wrap;
  gap: 50px;
  }
  
  .album {
  width: 45%;
  }
  
  .album-image {
  width: 250px;
  height: 250px;
  }
  
  .album h3 {
  font-size: 18px;
  }
  
  .album p {
  font-size: 16px;
  }
  
  .music-container {
  flex-wrap: wrap;
  gap: 40px;
  }
  
  .music-card {
  width: 280px;
  }
  
  .music-card-center {
  width: 300px;
  }
  
  .music-card h4 {
  font-size: 20px;
  }
  
  .music-card p {
  font-size: 16px;
  }
  
  footer {
  padding: 30px 40px;
  }
          
  footer .newsletter input[type="email"] {
  width: 250px;
  }
          
  footer button {
  width: 250px;
  }
}
  
  
  @media (max-width: 1440px) {
  header {
  padding: 20px 40px;
  }

  header .logo {
  font-size: 32px;
  }

  header nav a {
  font-size: 20px;
  }

  .about-band {
  height: auto;
  flex-direction: column;
  }

  .left-block {
  width: 100%;
  padding: 50px;
  }

  .left-block h2 {
  font-size: 50px;
  }

  .right-block {
  width: 100%;
  }

  .image-container {
  height: 550px;
  }

  .text-container {
  padding: 50px;
  }

  .text-container p {
  font-size: 20px;
  }

  .albums-section {
  padding: 60px;
  }

  .albums-section h2 {
  font-size: 50px;
  }

  .albums-container {
  flex-wrap: wrap;
  gap: 60px;
  }

  .album {
  width: 320px;
  }

  .album-image {
  width: 320px;
  height: 320px;
  }

  .album h3 {
  font-size: 22px;
  }

  .album p {
  font-size: 18px;
  }

  .music-section {
  padding: 80px;
  }

  .music-section h2 {
  font-size: 50px;
  }

  .music-section h3 {
  font-size: 22px;
  }

  .music-container {
  gap: 50px;
  }

  .music-card {
  width: 320px;
  }

  .music-card-center {
  width: 350px;
  }

  .music-card h4 {
  font-size: 22px;
  }

  .music-card p {
  font-size: 18px;
  }

  footer {
  padding: 50px 80px;
  }

  footer .contact-info p {
  font-size: 24px;
  }

  footer .newsletter h3 {
  font-size: 26px;
  }

  footer input[type="email"] {
  width: 350px;
  font-size: 18px;
  }

  footer button {
  width: 350px;
  font-size: 18px;
  }

  footer .footer-info p {
  font-size: 18px;
  }
}