* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Kanit", sans-serif;
}

.navbar {
  position: fixed;
  background: rgba(242, 242, 242, 0.8);
  width: 100%;
  margin: auto;
  padding: 2px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 3px;
  z-index: 999;
}

.logo img {
  height: 50px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-menu li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 14px;
  padding-bottom: 5px;
}

.nav-menu li a:hover {
  color: #568b6d;
}

.nav-menu li a.active {
  border-bottom: 2px solid black;
}

.nav-menu li a.active:hover {
  border-bottom: 2px solid #568b6d;
}

/* .btn-login {
  background: #6bbf72;
  padding: 7px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
}

.btn-login:hover {
  background: #5aa963;
} */

/* banner */
.hero-banner img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

.banner {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  gap: 6px;
}

.hero-text h1 {
  font-size: 0.8em;
  font-weight: lighter;
}

.hero-text h2 {
  font-size: 3em;
  font-weight: 900;
}

.hero-text p {
  font-size: 0.8em;
  font-weight: lighter;
}

.kotak-sejarah {
  background-color: white;
  min-height: 100vh;
  padding: 24px;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.kotak-satu {
  background-color: #568b6d;
  width: 1124px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border: 3px solid black;
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.5);
}

.kotak-dua {
  background-color: #f9f5f0;
  width: 1124px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border: 3px solid black;
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.5);
  padding: 50px 0;
  gap: 50px;
}

.isi {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 750px;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.vertikal-line {
  width: 2px;
  background: black;
  opacity: 0.3;
  border-radius: 10px;
}

.visi-misi-section {
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-align: center;
  border-bottom: 2px solid #ccc;
  display: inline-block;
  padding-bottom: 5px;
}

.visi-misi-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 25px;
  justify-content: center;
}

.left-column,
.right-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cardd {
  background: white;
  border: 2px solid #ddd;
  border-radius: 15px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cardd-header {
  background: #4f8f63;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  margin-bottom: 15px;
}

.label-text {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 15px;
}

.cardd p {
  margin-bottom: 12px;
  line-height: 1.5;
}

.struktur-section {
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border-bottom: 2px solid #ccc;
  display: inline-block;
  padding-bottom: 5px;
}

.header::before,
.header::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 2px;
  background-color: #333;
}

.slider-container {
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 50px;
}

.slider {
  display: flex;
  gap: 20px;
  transition: transform 0.35s ease;
}

/* ===== CARD STYLE ===== */
.card {
  min-width: calc(33.333% - 14px);
  background: #ffffff;
  border-radius: 15px;
  padding: 15px;
  text-align: start;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card:hover {
  transform: scale(1.08) translateY(-8px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 20px;
  margin: 6px 0 4px;
  font-weight: 600;
}

.card p {
  font-size: 15px;
  color: #555;
}

/* Tombol */
.btn {
  background: #444;
  color: white;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-size: 20px;
}

.btn:hover {
  background: #222;
}

.container {
  max-width: 1200px;
  margin: 50px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.header::before,
.header::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 2px;
  background-color: #333;
}

.header::before {
  left: 0;
}

.header::after {
  right: 0;
}

.header h1 {
  font-size: 2em;
  font-weight: bold;
  color: #000;
  display: inline-block;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.cardt {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 3px solid #2d5f4f;
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.card-footer {
  background-color: #2d5f4f;
  padding: 15px;
  text-align: center;
}

.card-footer h3 {
  color: white;
  font-size: 1.2em;
  font-weight: bold;
}

.footer {
  background-color: #4a8b73;
  color: white;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 40px;
  align-items: start;
}

.divider {
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}

.contact-section h2,
.navigation-section h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 35px;
  height: 35px;
  background-color: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: #4a8b73;
}

.contact-text {
  font-size: 1em;
  color: white;
}

.navigation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 40px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 1em;
  transition: opacity 0.3s;
}

.nav-link:hover {
  opacity: 0.8;
}

.copyright {
  text-align: center;
  padding: 15px 0;
  background: #222;
  color: #fff;
  font-size: 14px;
}
