/* Music Page */
/* Featured Artist Section */

.hero-music {
  background: url('images/hero-11.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 80vh; /* takes up most of the screen */
  padding: 2rem;
  position: relative;
}

/* optional overlay for readability */
.hero-music::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 0;
}

.hero-music .hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}


.hero-music .hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.hero-music .hero-content p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-music .btn-explore {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  border: 1px solid #111;
  font-weight: 500;
  text-decoration: none;
  color: #111;
  transition: all 0.3s ease;
}

.hero-music .btn-explore:hover {
  background: #111;
  color: #fff;
}

header {
      text-align: center;
      padding: 3rem 1rem;
      background: #fff;
      border-bottom: 1px solid #eee;
    }

    header h1 {
      font-size: 2.5rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin: 0;
    }

    .tips-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 3rem 5%;
    }

    .tip-block {
      background: #fff;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 4px 14px rgba(0,0,0,0.06);
      transition: transform 0.2s ease;
    }

    .tip-block:hover {
      transform: translateY(-6px);
    }

    .tip-block h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      text-transform: capitalize;
      letter-spacing: 1px;
      border-left: 4px solid #111;
      padding-left: 0.75rem;
    }

    .tip-block p {
      margin-bottom: 1rem;
      font-size: 1rem;
      color: #444;
    }

    .tip-block a {
      display: inline-block;
      margin-top: 1rem;
      text-decoration: none;
      color: #111;
      font-weight: bold;
      border-bottom: 2px solid #111;
      transition: color 0.3s ease, border-color 0.3s ease;
    }

    .tip-block a:hover {
      color: #555;
      border-color: #555;
    }