/* --- Base Layout --- */
body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  border-bottom: 1px solid #222;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: #1db954; /* Spotify green highlight */
}

/* --- EPK Container --- */
.epk-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-top: 60px; /* offset for fixed navbar */
}

.epk-container section {
  margin: 0;
  padding: 0;
}

.epk-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Spotify Section --- */
.spotify-section {
  text-align: center;
  margin: 40px auto;
}

.spotify-section iframe {
  display: inline-block;
}

/* --- Social Slide --- */
.social-slide {
  position: relative;
  width: 100%;
}

.social-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Clickable Hotspots --- */
.hotspot {
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 10;
  background: rgba(0,255,0,0); /* invisible */
}

/* Socials placement */
.insta { top: 79.65%; left: 9.37%; width: 7.28%; height: 13.35%; }
.youtube { top: 79.65%; left: 23.41%; width: 8.32%; height: 13.35%; }
.facebook { top: 79.65%; left: 38.50%; width: 7.28%; height: 13.35%; }
.linktree { top: 79.65%; left: 52.55%; width: 8.32%; height: 13.35%; }
.email { top: 79.65%; left: 67.64%; width: 18.21%; height: 13.35%; }

/* --- Content Sections --- */
.content-section {
  padding: 80px 20px;
  text-align: center;
  background: #111;
  margin-top: 40px;
  border-top: 1px solid #222;
}

.content-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.content-section p {
  font-size: 16px;
  line-height: 1.5;
}

.content-section a {
  color: #1db954;
  text-decoration: none;
}

.content-section a:hover {
  text-decoration: underline;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .nav-links {
    justify-content: center;
    gap: 15px;
  }
  .content-section h2 { font-size: 22px; }
}
