* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: #0a0a0a;
  color: white;
  overflow-x: hidden;
  padding-top: 80px;
}

section {
  min-height: 100vh;
  padding: 80px 5%;
  position: relative;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  margin: 15px 10px;
  transition: all 0.3s ease;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

nav ul li a:hover {
  color: #e52e71;
}

.contact-icon {
  margin-left: 5px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background: #121212;
    transition: left 0.3s;
    padding: 40px 20px;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 15px 0;
  }
}

#hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1496293455970-f8581aae0e3b') center/cover;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.btn-primary {
  background: #e52e71;
  color: white;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
}

/* === GENRE SHOWCASE === */
#genres {
  background-color: #121212;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.genre-card {
  background: #1e1e1e;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s;
}

.genre-card:hover {
  transform: translateY(-10px);
}

.genre-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.afrobeat {
  color: #ff8a00;
}
.reggae {
  color: #00aa55;
}
.hiphop {
  color: #1da1f2;
}

.genre-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* === FEATURED MIX === */
#featured-mix {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  align-items: center;
}

.mix-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.mix-art {
  flex: 1;
  min-width: 300px;
}

.mix-art img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mix-details {
  flex: 1;
  min-width: 300px;
  padding: 0 40px;
}

.mix-details h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.mix-details p {
  margin-bottom: 30px;
  line-height: 1.6;
}

#cta {
  background-color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.social-links {
  margin-top: 40px;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  margin: 0 15px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #e52e71;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .genre-grid {
    grid-template-columns: 1fr;
  }

  .mix-container {
    flex-direction: column;
  }

  .mix-details {
    padding: 40px 0 0 0;
  }
}
