body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #c77dff; /* Ungu terang */
  font-family: 'Arial', sans-serif;
  background-image: url("../img/logo.png"); /* atau logo.png */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%; /* sesuaikan ukurannya */
  background-attachment: fixed;
  opacity: 1;
} 
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #111;
  position: sticky;
  top: 0;
}

.logo {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #c77dff;
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: underline;
}

main {
  text-align: center;
  padding: 50px 20px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  background-color: #000;
  color: #c77dff; /* Ungu terang */
  font-family: Arial, sans-serif;
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40%;
  background-attachment: fixed;
  min-height: 100vh;
}

/* Navigation (Optional) */
nav {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 15px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

nav a {
  color: #c77dff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #fff;
}

/* Header Text Center */
h1, h2, h3 {
  text-align: center;
  margin: 20px 0;
}

/* Container */
.container {
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background-color: #111;
  color: #c77dff;
  font-size: 0.9em;
}
/* Responsive */
@media (max-width: 768px) {
  body {
    background-size: 80%;
  }

  nav a {
    display: inline-block;
    margin: 10px 5px;
  }
}
body {
  background-color: #000;
    color: #b86eff; /* ungu terang */
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 0;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.navbar a.active {
  color: #b86eff;
  text-decoration: underline;
}

.content {
  padding: 40px;
  text-align: center;
}

.judul-halaman {
  font-size: 32px;
  margin-bottom: 20px;
}

.biografi p {
  max-width: 800px;
  margin: 10px auto;
  line-height: 1.6;
  font-size: 18px;
}
body {
  background-color: #000;
  color: #d4a3ff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

nav ul {
  display: flex;
  list-style: none;
  background-color: #111;
  padding: 10px;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #d4a3ff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a.active {
  border-bottom: 2px solid #d4a3ff;
}

main {
  padding: 30px;
  text-align: center;
}

.judul-lagu {
  font-size: 2em;
  margin-bottom: 20px;
}

.lagu-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.lagu-item {
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
}

.lagu-item h3 {
  color: #ffffff;
}

.lagu-item a {
  display: inline-block;
  margin-top: 8px;
  color: #ff00ff;
  text-decoration: underline;
  font-size: 14px;
}
/* Video background */
#bgVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -2;
  object-fit: cover;
}

/* Overlay hitam transparan */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Sesuaikan gelapnya di sini */
  z-index: -1;
}

/* Konten */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #b083ff;
  top: 30%;
}
.foto-konten {
  max-width: 30%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
}