:root {
  --black: #000000;
  --cream: #f5e6cc;
  --white: #ffffff;
  --font: "Plus Jakarta Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font);
}

/* NAVBAR */
.navbar {
  display: flex;
  width: 100%;
  padding: 20px 20px;
  align-items: center;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  top: 0;
  z-index: 1;
}

nav {
  display: flex;
  flex: 1;
  justify-content: center;
}

.logo a {
  color: var(--cream);
  text-decoration: none;
  font-size: 40px;
  font-weight: 700;
}

.navbar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.navbar ul li a {
  font-family: var(--font);
  color: var(--cream);
  opacity: 0.7;
  text-decoration: none;
  font-size: 18px;
}

.navbar a:hover {
  opacity: 1;
}

/* HOME SECTION */
#home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
}

.banner-text {
  font-size: 28px;
  margin-left: 150px;
}

.banner-img {
  width: 50%;
  height: auto;
}

/* BIO SECTION */
#bio {
  display: flex;
  margin: 70px 0;
  padding: 100px 100px 0;
  gap: 50px;
}

.bio-left {
  display: flex;
}

.bio-img {
  width: 320px;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}

.bio-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bio-right h2 {
  font-size: 40px;
  font-weight: 700;
}

.bio-right p {
  color: var(--white);
  text-align: justify;
  line-height: 1.5;
  opacity: 0.9;
}

.bio-right ol {
  color: var(--white);
  padding-left: 18px;
  line-height: 1.5;
  opacity: 0.9;
}

.social-media1 {
  display: flex;
  align-items: center;
  gap: 26px;
}

.yt {
  width: 34px;
  height: 34px;
}

.ig {
  width: 26px;
  height: 26px;
}

.spt {
  width: 40px;
  height: 40px;
}

.social-media1 a:hover img {
  transform: translateY(-2px) scale(1.08);
}

/* ALBUM SECTION */
#album {
  margin: 70px 0;
  padding: 100px 100px 0;
  text-align: center;
}

#album h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--cream);
}

.album-container {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 80px;
}

/* CARD */
.album {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.album:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.album img {
  width: 100%;
  border-radius: 16px;
}

.album p {
  margin-top: 10px;
  font-size: 18px;
  color: var(--white);
}

.album a {
  text-decoration: none;
}

/* LAGU SECTION */
#lagu {
  margin: 70px 0;
  padding: 100px 100px 0;
  text-align: center;
}

#lagu h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--cream);
}

/* TABEL */
.lagu-table {
  width: 70%;
  margin: 0 auto;
  border-collapse: collapse;
  color: var(--white);
}

.lagu-table th,
.lagu-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 16px;
}

.lagu-table th {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--cream);
}

.lagu-table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

.lagu-table tr:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ARTIS SERUPA SECTION */
#serupa {
  margin: 70px 0;
  padding: 100px 100px 0;
  text-align: center;
}

#serupa h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--cream);
}

.artis-container {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 80px;
}

/* CARD */
.artis {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.artis:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.artis img {
  width: 100%;
  border-radius: 16px;
}

.artis p {
  margin-top: 10px;
  font-size: 18px;
  color: var(--white);
}

.artis a {
  text-decoration: none;
}

/* PESAN PENGGEMAR SECTION */
#pesanpenggemar {
  margin: 70px 0;
  padding: 100px 100px 0;
  text-align: center;
}

#pesanpenggemar h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--cream);
}

#pesanpenggemar p {
  color: var(--white);
  opacity: 0.5;
  margin-bottom: 40px;
  font-size: 18px;
}

/* FORM */
.fan-form {
  width: 50%;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
}

.form-group input,
.form-group textarea {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--white);
  font-size: 14px;
}

.submit {
  background-color: var(--cream);
  color: var(--black);
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.submit:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

footer {
  display: flex;
  padding: 20px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.social-media2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.social-media2 a:hover img {
  transform: translateY(-2px) scale(1.08);
}
