@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
  --bg-dark: #0d0d0d;
  --bg-light: #1a1a1a;
  --accent: #f4a261;
  --accent-hover: #e76f51;
  --text: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--bg-light);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  max-height: 60px;
}

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

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--accent);
}

/* BURGER MENU */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  background: var(--text);
  margin: 4px;
  width: 25px;
  height: 3px;
  border-radius: 2px;
  transition: 0.3s;
}

.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.toggle span:nth-child(2) {
  opacity: 0;
}
.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* HERO */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #000;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: var(--accent-hover);
  color: #fff;
}

/* MUSIC */
.music {
  padding: 4rem 2rem;
  text-align: center;
}

.music h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.player {
  max-width: 700px;
  margin: 2rem auto;
}

/* LEGAL PAGES */
.legal {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1rem;
  background: var(--bg-light);
  margin-top: 2rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav ul {
    position: absolute;
    right: 0;
    top: 70px;
    flex-direction: column;
    background: var(--bg-light);
    width: 200px;
    padding: 1rem;
    display: none;
  }

  .nav-links.nav-active {
    display: flex;
  }

  .burger {
    display: flex;
  }
}
