* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #006c00;
  overflow-x: hidden;
}

@keyframes rotate-slow {
  from {
    transform: translateX(-60%) rotate(0deg);
  }
  to {
    transform: translateX(-60%) rotate(360deg);
  }
}

.polygon {
  animation: rotate-slow 20s linear infinite;
  transform-origin: center;
  position: absolute;
  margin-left: 90px;
  top: 150px;
  left: 1000%;
  transform: translateX(-60%);
  width: 1072px;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

/* NAVBAR */
.navbar {
  width: 100%;
  height: 105px;
  background-color: #683d90;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
}

.navbar-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo {
  position: absolute;
  left: 24px;
  width: 160px;
  height: 68px;
  margin-top: -35px;
  object-fit: contain;
}


.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  opacity: 0.5;
  transition: 0.2s;
}

.nav-links a.active,
.nav-links a:hover {
  opacity: 1;
}

/* HOME HERO */
.home-hero {
  background-color: #006c00;
  padding-top: 105px;
  height: 1024px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.home-hero .polygon {
  position: absolute;
  top: 500px;
  left: 50%;
  transform: translateX(-50%);
  width: 1072px;
  height: auto;
  z-index: 1;
  margin-top: auto;
  margin-bottom: -170px;
}

.overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}

.brand-title {
  font-family: 'Bungee', sans-serif;
  font-size: 104px;
  color: white;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 24px;
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}

.brand-description {
  color: white;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 32px;
}

.artboard {
  width: 100%;
  max-width: 1250px;
  height: auto;
  margin-top: auto;
  margin-bottom: -170px;
}

/* Footer */
.footer {
  background-color: #683d90;
  padding: 24px;
  color: white;
  z-index: 2;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 200px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-left a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-center {
  text-align: center;
  font-size: 14px;
  margin-top: 25px ;
}

.footer-right {
  text-align: right;
}

.footer-right h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-right p {
  font-size: 14px;
}

.sosmed-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
