/* Umum */
body,
html {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  background-color: #000;
  color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

header.sticky-navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 10px 20px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}

header .logo {
  font-size: 1.5rem;
  color: #d4af37;
  font-weight: bold;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  text-decoration: none;
  color: #fff;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #d4af37;
  border-bottom: 2px solid #d4af37;
}

/* Biodata Slide */
.biodata-slide {
  display: flex;
  align-items: center;
  height: 100vh;
  background: linear-gradient(to right, #d4af37, #000);
  padding: 50px;
  box-sizing: border-box;
}

.biodata-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-box {
  width: 300px;
  height: 400px;
  background-color: #d4af37;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biodata-right {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.biodata-right h1 {
  font-size: 3rem;
  color: #fff;
}

.biodata-right h2 {
  font-size: 2rem;
  color: #d4af37;
}

.biodata-right p {
  font-size: 1rem;
  margin: 20px 0;
}

.bintang-dekorasi {
  color: #d4af37;
  font-size: 2rem;
  margin: 10px 0;
}

.bottom-boxes {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.bottom-boxes div {
  flex: 1;
  background: linear-gradient(to right, #d4af37, #000);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.bottom-boxes h3 {
  margin: 0;
  color: #fff;
}

.bottom-boxes p {
  color: #fff;
}

.bottom-boxes span {
  color: #1ab394;
}
