  * {
  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;
  }
}
  
  
  .hero-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: url("../../images/electronic/Depeche_Mode_page/about_band/about_band_2.jpg") no-repeat center/cover;
  height: 800px;
  overflow: hidden;
  }
      
  .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
  }

  .hero-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #fff;
  }

  .hero-container {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  position: relative;
  z-index: 3;
  }

  .hero-image {
  position: relative;
  width: 350px;
  height: 350px;
  overflow: hidden;
  border-top-left-radius: 70px;
  border-top-right-radius: 70px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }

  .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  }

  .hero-title-block {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 40px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  width: 700px;
  position: relative;
  z-index: 2;
  }

  .subtitle-text {
  font-family: 'Cormorant Unicase', serif;
  font-size: 34px;
  color: #4d2c19;
  margin-bottom: 10px;
  }

  .main-title {
  font-family: "Aboreto", serif;
  font-weight: 900;
  font-size: 44px;
  color: #2c1a10;
  }

  .hero-text-block {
  background: rgba(72, 10, 119, 0.944);
  padding: 25px 30px;
  color: white;
  max-width: 650px;
  align-self: center;
  margin-top: -10px;
  position: relative;
  z-index: 2;
  }

  .hero-text-block p {
  font-family: "Cormorant Unicase", serif;
  font-weight: 500;
  font-size: 20px;
  }


  .albums-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(74, 17, 17, 1));
  padding: 80px 20px;
  text-align: center;
  position: relative;
  }

  .albums-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #fff;
  }

  .albums-title {
  font-family: "Ruslan Display", serif;
  font-weight: 100;
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 40px;
  }

  .albums-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  }

  .row {
  display: flex;
  justify-content: center;
  gap: 140px;
  width: 100%;
  flex-wrap: wrap;
  }

  .center-row {
  margin-top: 30px;
  }

  .album {
  background: #fff;
  width: 290px;
  height: 390px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid rgb(255, 255, 255);
  }

  .album:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.5);
  }

  .album img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  }

  .album-text {
  height: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  }

  .album-title {
  font-family: "Fahkwang", serif;
  font-weight: 500;
  font-size: 20px;
  color: #4d2c19;
  margin-bottom: 10px;
  }

  .album-description {
  font-family: "EB Garamond", serif;
  font-size: 17px;
  line-height: 1.4;
  color: #333;
  padding: 0 15px;
  }


  .songs-section {
  padding: 80px 20px;
  background-image: url('../../images/electronic/Depeche_Mode_page/music/music_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
  }

  .songs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
  }

  .songs-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #fff;
  z-index: 3;
  }

  .music-container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  }

  .music-title {
  font-family: "Ruslan Display", serif;
  font-weight: 100;
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 15px;
  }
  
  .music-subtitle {
  font-family: "EB Garamond", serif;
  font-size: 24px;
  color: #d9b08c;
  margin-bottom: 40px;
  }
  
  .songs-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  }
  
  .line {
  display: flex;
  justify-content: center;
  gap: 100px;
  width: 100%;
  flex-wrap: wrap;
  }
  
  .center-row {
  margin-top: 20px;
  }
  
  .song {
  background: rgba(255, 255, 255, 0.95);
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 10px;
  }
  
  .song:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(255, 127, 0, 0.6);
  }
  
  .song img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  }
  
  .song-title {
  font-family: "Fahkwang", serif;
  font-size: 22px;
  color: #4d2c19;
  margin: 15px 0 10px;
  }
  
  .song-description {
  font-family: "Cormorant Unicase", serif;
  font-size: 18px;
  padding: 0 20px;
  color: #333;
  }
  
  .song-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background: #480a77;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
  }
  
  .song-btn:hover {
  background: transparent;
  border: solid 1px #480a77;
  color: #000;
  }
  
        
  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;
  }
  
  .hero-section {
  flex-direction: column;
  height: auto;
  padding: 60px 20px;
  text-align: center;
  }
  
  .hero-container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  }
  
  .hero-image {
  width: 250px;
  height: 250px;
  }
  
  .hero-title-block {
  width: 100%;
  max-width: 600px;
  padding: 15px 20px;
  }
  
  .hero-text-block {
  max-width: 100%;
  padding: 20px;
  }
  
  .albums-section {
  padding: 40px 10px;
  }

  .albums-container {
  gap: 20px;
  }

  .album {
  width: 90%;
  max-width: 350px;
  }

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

  .album-description {
  font-size: 14px;
  padding: 0 10px;
  }
  
  .songs-section {
  padding: 40px 10px;
  }
  
  .music-title {
  font-size: 32px;
  }
  
  .song {
  width: 100%;
  }
  
  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;
  }

  .hero-section {
  padding: 60px 40px;
  }

  .hero-container {
  gap: 20px;
  max-width: 90%;
  }

  .hero-image {
  width: 200px;
  height: 200px;
  }

  .hero-title-block {
  padding: 15px 20px;
  width: 100%;
  max-width: 600px;
  }

  .main-title {
  font-size: 28px;
  }

  .hero-text-block {
  padding: 15px;
  }

  .albums-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  }

  .row {
  flex-direction: column;
  align-items: center;
  gap: 30px;
  }

  .album {
  width: 80%;
  max-width: 400px;
  height: auto;
  }

  .album img {
  height: auto;
  }

  .album-title {
  font-size: 20px;
  }

  .album-description {
  font-size: 16px;
  padding: 0 15px;
  }

  .songs-section {
  padding: 60px 15px;
  }

  .music-title {
  font-size: 40px;
  }

  .song {
  width: 280px;
  }

  footer {
  padding: 30px 40px;
  }
            
  footer .newsletter input[type="email"] {
  width: 250px;
  }
            
  footer button {
  width: 250px;
  }
}