* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

header {
  background-color: #1a1a1a;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav a.active,
nav a:hover {
  color: #ff4d4d;
  
}

.hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
}

.hero-text span {
  color: #ff4d4d;
}

.featured-music {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.featured-music h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  margin-left: 8px;
}

.player-controls button {
  background: green;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.player-controls button:hover {
  background: #ff4d4d;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.volume-control i {
  color: white;
}

#volume-slider {
  width: 100px;
}

.upcoming-events {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.upcoming-events h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-cards {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.event-card {
  border-radius: 10px;
  padding: 1.5rem;
  flex: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card p {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
}

.btn {
  display: inline-block;
  background: green;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.3s;
}

.btn:hover {
  background:  #ff4d4d;
}

.see-all {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.see-all:hover {
  color: #ff4d4d;
}

footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #ff4d4d;
}


.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff4d4d;
}

main {
  background-color: #1a1a1a;
  padding: 20px 0;
  margin: 0;
}

body {
  background-color: #1a1a1a;
  margin: 0;
  padding: 0;
}

.tour-header h1 {
  color: #ffffff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  margin: 30px 0;
  padding: 10px 0;
}

.tour-dates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 0 20px;
}

.event-card {
  background-color: #252525;
  border-radius: 8px;
  padding: 20px;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.event-card h3 {
  color: #1db954;
  margin-top: 0;
}

.event-card p {
  color: #ccc;
  margin: 8px 0;
}

.btn {
  background-color: #1db954;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;

  footer {
    margin-top: 0;
  }
}

.albums-header h1 {
  color: #ffffff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin: 20px 0;
  padding: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  justify-content: center;
  gap: 40px;
  padding: 30px;
  background-color: #1a1a1a;
  max-width: 1300px;
  margin: 0 auto;
}

.album-card {
  background-color: #252525;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height:430px;
  padding: 10px;
}

.album-card:hover {
  transform: scale(1.03);

}

.album-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.album-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.album-info h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.album-info p {
  color: #b3b3b3;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.preview-player {
  width: 100%;
  margin-top: 10px;
  position: relative;
  left: 0;
  transform: none;

}

footer {
  text-align: center;
  padding: 1.5rem;
  background: #222;
  color: white;
  margin-top: 2rem;
}

.about-content {
  display: flex;
  padding: 50px;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  flex: 1;
  padding-right: 30px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.about-text {
  flex: 1;
  padding-left: 30px;

}

.about-text h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f8f8f8;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.gallery-section {
  width: 100%;
  padding: 0 50px 50px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery-heading {
  margin-bottom: 40px;
}

.gallery-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 50px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s;
}

.photo-grid img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero-text {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .tour-dates,
  .album-grid,
  .photo-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .about-content {
    flex-direction: column;
    padding: 20px;
  }

  .about-image,
  .about-text {
    padding: 0;
  }

  .event-cards {
    flex-direction: column;
  }

  .album-grid {
    gap: 20px;
  }

  .player-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .volume-control {
    width: 100%;
    justify-content: space-between;
  }

  .gallery-section {
    padding: 0 20px 40px;
  }

  .gallery-heading h2 {
    font-size: 2rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .social-icons {
    gap: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }

  .hero-text {
    font-size: 1.5rem;
  }

  .featured-music h2,
  .upcoming-events h2,
  .albums-header h1,
  .tour-header h1 {
    font-size: 1.5rem;
  }

  .album-card {
    width: 100%;
    height: auto;
  }

  .album-card img {
    height: 180px;
  }

  .about-text h1 {
    font-size: 1.5rem;
  }

  .gallery-heading h2 {
    font-size: 1.8rem;
  }

  .footer-nav a {
    font-size: 1rem;
  }

  .social-icons a {
    font-size: 1.2rem;
  }
}

