/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body {
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color: transparent;
  padding: 10px 20px;
}

.navbar-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-logo img {
  height: 60px;
  max-width: 200px;
  object-fit: contain;
}

/* Hero Section */
.hero {
  background-color: transparent;
  color: white;
  text-align: center;
  padding: 10px 0;
}

.image-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 25px;
}

.image-buttons a img {
  width: 150px;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.image-buttons a:hover img {
  transform: scale(1.05);
}

/* Gallery / Carousel */
.gallery {
  padding: -20px 20px;
  background-color: transparent;
  text-align: center;
}

.carousel {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.carousel-track img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 5px;
  z-index: 2;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Artikel Section */
.artikel {
  background-color: transparent;
  padding: 30px 20px;
  color: #fff;
  display: flex;
  justify-content: center;
  text-align: center;
}

.artikel-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: justify;
}

.artikel h1,
.artikel h2,
.artikel h3 {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  margin-bottom: 15px;
  font-weight: 700;
}

.artikel h1 {
  font-size: 20px;
  margin-top: 10px;
  text-align: center;
}

.artikel h2 {
  font-size: 18px;
  margin-top: 15px;
  text-align: center;
}

.artikel h3 {
  font-size: 16px;
  margin-top: 10px;
  text-align: center;
}

.artikel p {
  font-size: 16px;
  line-height: 1.8;
}

/* Responsive (Mobile) */
@media (max-width: 600px) {
  .navbar-container {
    flex-direction: column;
    align-items: center;
  }

  .navbar-logo img {
    height: 55px;
    max-width: 180px;
  }

  .carousel-track img {
    width: 100%;
    height: auto;
  }

  .image-buttons a img {
    width: 90%;
    max-width: 150px;
  }

  .artikel-container {
    padding: 15px;
    margin: 0 10px;
    text-align: justify;
  }

  .artikel-container h1 {
    font-size: 20px;
  }

  .artikel-container h2 {
    font-size: 18px;
  }

  .artikel-container h3 {
    font-size: 16px;
  }

  .artikel-container p {
    font-size: 14px;
    line-height: 1.6;
  }
}
a {
  color: #ff0000; /* Ganti dengan warna yang kamu inginkan */
  text-decoration: none; /* Hilangkan garis bawah jika tidak diinginkan */
}

a:hover {
  color: #ffcc00; /* Warna saat di-hover */
  text-decoration: underline; /* Opsional, efek saat hover */
}
