/* Reset dan box-sizing */
* {
  box-sizing: border-box; /* Agar padding dan border termasuk dalam ukuran elemen */
}

/* BODY: font size responsif, minimal 14px, maksimal 18px, preferensi 2vw */
body {
  min-height: 100vh;
  background-color: #000000;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  
  /* Ukuran font responsif untuk seluruh body */
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.5; /* agar nyaman dibaca */
}

/* Header bar */
header {
  background-color: #ffffff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  
  /* font size responsif */
  font-size: clamp(14px, 1.8vw, 16px);
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1800px;
  margin: auto;
  flex-wrap: wrap;
  
  font-size: clamp(14px, 1.8vw, 16px);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}

/* Menu */
.menu-items {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0;
  padding-top: 20px;
  list-style: none;
  justify-content: flex-end;
  
  font-size: clamp(14px, 1.8vw, 16px);
}

.menu-items {
  min-width: 50px;
}

.menu-items a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.3s ease;
  display: inline-block;
  white-space: nowrap;
  
  font-size: clamp(14px, 1.8vw, 16px);
}

.menu-items a:hover,
.menu-items a:focus {
  background-color: rgba(255, 255, 255, 0.2);
  outline: none;
}

/* Main title full width */
.main-title {
  max-width: 3000px;
  margin: auto;
  display: grid;
  gap: 0px;
  background: white;
  padding: 0px;
  height: 150px;
  overflow: hidden;
  
  /* font size tidak perlu di sini karena di p */
}

.main-title .content-item {
  position: relative;
  display: inline-block;
}

.main-title img {
  display: block;
  width: 100%;
  height: auto;
}

.main-title p {
  font-size: clamp(24px, 3.5vw, 56px) !important; /* ukuran besar responsif */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000 !important;
  font-weight: 800;
  padding: 12px 28px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  text-align: center;
}

/* Main title1 */
.main-title1 {
  width: 100%;
  padding: 0px;
  background-color: #000000;
  text-align: center;
}



.main-title1 .content-item {
  max-width: 3000px;
  margin: auto;
  display: grid;
  gap: 0px;
  background: white;
  padding: 0px;
  height: 20px;
  overflow: hidden;
}

.main-title1 p {
  margin: 0;
  font-weight: bold;
  color: #000000 !important;
  font-size: clamp(15px, 1vw, 16px) !important;
  text-align: center;
}


/* Main grid content */
main {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  
  font-size: clamp(14px, 1.8vw, 18px);
}

.content-item, .content-item:link, .content-item:visited {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  
  font-size: clamp(14px, 1.8vw, 16px);
}

.content-item:hover {
  transform: scale(1.05);
}

.content-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.content-item p {
  margin: 0;
  font-weight: bold;
  color: #ffffff;
  font-size: clamp(14px, 1.8vw, 16px);
  text-align: center;
}

/* Responsive menu */
@media (max-width: 768px) {
  .navbar {
    justify-content: center;
  }

  .menu-items {
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
  
  /* Bisa juga kecilkan font lebih lagi di layar sangat kecil */
  body {
    font-size: clamp(12px, 3vw, 16px);
  }
  
  .main-title p {
    font-size: clamp(18px, 5vw, 32px) !important;
  }
  
  .main-title1 p {
    font-size: clamp(10px, 3vw, 14px) !important;
  }
}


body {
  font-family: Arial, sans-serif;
  background-color: #f3f4f6;
  margin: 0;
  padding: 0;
}

.header {
  background-color: #1f2937;
  color: white;
  padding: 16px;
  text-align: center;
}

.container {
  max-width: 1300px;   /* batasi lebar agar teks gak terlalu melebar */
  margin: 20px auto;  /* tengah horizontal dan jarak atas bawah */
  padding: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.column h1 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1f2937;
  text-align: center;
  
}

.column h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1f2937;
  text-align: center;
}

.column p {
  text-align: justify;
  color: #374151;
  line-height: 1.6;
}

.column ol {
  padding-left: 20px;
  color: #374151;
  /* line-height: 1.6; */
}

.column ol li {
  margin-bottom: 1em; /* jarak antar list item */
  /* line-height: 1.2;   jarak antar baris dalam 1 item */
}
.column ol li strong {
  color: #1f2937;
  font-weight: 700;
}

.container1 img {
  display: block;
  width: 10%;
  height: auto;
text-align: center;
}
.center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}