/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #f1f1f1;
}

/* Header Styles */
.header {
  background-color: #1a1a1a;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff4081;
}

/* Navigation Styles */
.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-list li a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-list li a:hover {
  color: #ff4081;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 2rem;
  color: #f1f1f1;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    display: none;
    flex-direction: column;
  }

  .nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
  }

  .hamburger {
    display: block;
  }
}
/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4') center center / cover no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  color: #d1d1d1;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.btn.primary {
  background-color: #ff4081;
  color: #fff;
}

.btn.primary:hover {
  background-color: #e73370;
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid #ff4081;
  color: #ff4081;
}

.btn.secondary:hover {
  background-color: #ff4081;
  color: #fff;
}

/* Responsive Text Sizes */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
/* About Section */
.about {
  background-color: #1a1a1a;
  padding: 4rem 2rem;
  color: #f1f1f1;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.about-text {
  flex: 1 1 55%;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ff4081;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #ccc;
}

.about-text .signature {
  font-style: italic;
  color: #ff4081;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}
/* Featured Music Section */
.music {
  background-color: #121212;
  padding: 4rem 2rem;
  color: #f1f1f1;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #ff4081;
  margin-bottom: 3rem;
}

.album-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.album-card {
  background-color: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 64, 129, 0.4);
}

.album-card img {
  width: 100%;
  display: block;
}

.album-info {
  padding: 1.5rem;
}

.album-info h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.album-info p {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 1rem;
}

.album-links a {
  display: inline-block;
  margin-right: 1rem;
  text-decoration: none;
  color: #ff4081;
  font-weight: bold;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.album-links a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .album-grid {
    flex-direction: column;
    align-items: center;
  }

  .album-card {
    width: 90%;
  }
}
/* Tour Section */
.tour {
  background-color: #121212;
  padding: 4rem 2rem;
  color: #f1f1f1;
  text-align: center;
}

.tour-container {
  max-width: 800px;
  margin: auto;
}

.tour-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.tour-item {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.tour-date {
  font-size: 1.2rem;
  color: #ff4081;
  font-weight: bold;
  flex: 1 1 150px;
}

.tour-location {
  font-size: 1rem;
  color: #ccc;
  flex: 2 1 300px;
}

.tour-btn {
  background-color: transparent;
  border: 2px solid #ff4081;
  color: #ff4081;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  flex: 1 1 120px;
  text-align: center;
}

.tour-btn:hover {
  background-color: #ff4081;
  color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
  .tour-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }

  .tour-btn {
    width: 100%;
  }
}
/* Merch Section */
.merch {
  background-color: #1a1a1a;
  padding: 4rem 2rem;
  color: #f1f1f1;
  text-align: center;
}

.merch-container {
  max-width: 1200px;
  margin: auto;
}

.merch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.merch-item {
  background-color: #252525;
  border-radius: 10px;
  overflow: hidden;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.merch-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 64, 129, 0.4);
}

.merch-item img {
  width: 100%;
  height: auto;
  display: block;
}

.merch-info {
  padding: 1rem;
}

.merch-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.merch-info p {
  font-size: 1rem;
  color: #ff4081;
  font-weight: bold;
}

.merch-btn {
  margin-top: 2rem;
  display: inline-block;
  background-color: transparent;
  border: 2px solid #ff4081;
  color: #ff4081;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.merch-btn:hover {
  background-color: #ff4081;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .merch-grid {
    flex-direction: column;
    align-items: center;
  }
}
/* Newsletter Section */
.newsletter {
  background-color: #121212;
  padding: 4rem 2rem;
  color: #f1f1f1;
  text-align: center;
}

.newsletter-container {
  max-width: 600px;
  margin: auto;
}

.newsletter-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.newsletter-form input[type="email"] {
  padding: 0.75rem 1rem;
  width: 100%;
  max-width: 300px;
  border-radius: 25px;
  border: none;
  outline: none;
  font-size: 1rem;
  background-color: #1e1e1e;
  color: #f1f1f1;
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: none;
  background-color: #ff4081;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e73370;
}

.privacy-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}

/* Responsive */
@media (max-width: 500px) {
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}
/* Footer Section */
.footer {
  background-color: #121212;
  color: #bbb;
  padding: 2.5rem 2rem;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff4081;
}

.footer-social a {
  color: #bbb;
  margin-left: 1rem;
  font-size: 1.4rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:first-child {
  margin-left: 0;
}

.footer-social a:hover {
  color: #ff4081;
}

.footer-links {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff4081;
}

.footer-bottom p {
  color: #777;
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links {
    gap: 1rem;
  }
}
.album-info audio {
  width: 100%;
  margin: 1rem 0;
  background-color: #1e1e1e;
  border-radius: 8px;
}
