/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
a {
  color: #1e90ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Hero Section */
#hero {
  background: url('https://via.placeholder.com/1200x600?text=DJ+Background') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 1rem;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.hero-content p {
  font-size: 1.5rem;
}

/* Music Player */
#music {
  padding: 2rem 1rem;
  background: #f4f4f4;
}
#music h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.track {
  max-width: 600px;
  margin: 0.5rem auto;
}

/* Events Section */
#events {
  padding: 2rem 1rem;
}
#events h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.events-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}
.events-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}

/* Gallery Section */
#gallery {
  padding: 2rem 1rem;
  background: #f4f4f4;
}
#gallery h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
.gallery-grid img {
  width: 100%;
  display: block;
}

/* Social Media */
#social {
  padding: 2rem 1rem;
  text-align: center;
}
.social-links a {
  margin: 0 0.5rem;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
}