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

/* BASE */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
}

.container {
  max-width: 1002px;
  margin: 0 auto;
  padding: 0 40px;
}

/* NAVBAR */
.navbar {
  background-color: #19423c;
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: top 0.3s ease;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  white-space: nowrap;
}

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

.nav-menu li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.nav-menu li a:hover {
  color: #f2ab04;
  font-weight: 500;
}

.nav-menu li a.active {
  color: #f2ab04;
  font-weight: 600;
  position: relative;
}

/* Optional: garis bawah untuk menu aktif */
.nav-menu li a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f2ab04;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 80px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
}

.hero-text {
  position: absolute;
  bottom: 160px;
  left: 190px;
  color: white;
  z-index: 3;
  text-align: left;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 80px;
  font-weight: 300;
  margin-bottom: 12px;
}

.hero-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 314px;
}

/* SECTIONS */
.profil-section,
.visi-section,
.misi-section {
  padding: 100px 0;
  position: relative;
  height: 400px;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
}

.profil-section {
  background-color: #f2ab04;
  margin-top: -39px;
  z-index: 1;
}

.visi-section {
  background-color: #ffd621;
  margin-top: -39px;
  z-index: 2;
}

.misi-section {
  background-color: #fff848;
  margin-top: -39px;
  z-index: 3;
}

.info-box {
  display: flex;
  align-items: center;
  padding-left: 190px;
  padding-right: 40px;
  max-width: 100%;
  gap: 60px;
}

.info-box h2 {
  flex-shrink: 0;
  font-size: 80px;
  font-weight: 300;
  margin: 0;
  width: 160px;
}

.info-box p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  margin-left: 305px;
  max-width: 500px;
}

.see-all-section {
  background-color: #ffffff;
  padding: 1.5rem 0;
  text-align: center;
  z-index: 4;
}

.btn-see-all {
  background-color: #c2621a;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 4;
}

.btn-see-all:hover {
  background-color: #a14f13;
  transform: scale(1.05);
}

/* FOOTER */
.footer {
  background-color: #1e1b1b;
  color: white;
  height: 450px;
  padding: 2rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer h4 {
  margin-bottom: 0.8rem;
}

.footer p {
  color: white; /* atau warna lain sesuai tema kamu */
  text-decoration: none;
  color: inherit;
}
.footer a {
  text-decoration: none ;
  color: inherit; /* atau warna lain sesuai keinginan */
}
.footer p:hover {
  text-decoration: underline; /* opsional */
}