/* Update the header and navigation styles */
header {
  background-color: #333;
  padding: 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

nav a:hover {
  color: #999;
}

.social-nav a i {
  margin-right: 0.5rem;
}

/* Remove the contact section styles and update media queries */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero img {
    max-width: 200px;
  }

  h2 {
    font-size: 2rem;
  }

  .about, .music {
    padding: 3rem 1rem;
  }
}