* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #333;
}

.brand-title, .menu-title, .headline, .scroll-down {
  font-family: 'Bungee', sans-serif;
}

.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;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo {
  margin-top: -35px;
  position: absolute;
  left: 24px;
  width: 160px;
  height: 68px;
  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;
}

/* Hero Section */
.about-hero {
  background: url('img/about-bg.jpg') center/cover no-repeat;
  height: 1024px;
  padding-top: 105px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.overlay {
  background-color: rgba(255, 106, 0, 0.6);
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  text-align: center;
}

.brand-title {
  position: relative;
  display: inline-block;
  color: white;
  font-family: 'Bungee', sans-serif;
  font-size: 64px;
  margin-bottom: 24px;
}

.brand-title::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -20px;
  height: 120%;
  width: 109%;
  background-color: #d62828;
  transform: scaleX(0);
  transform-origin: left;
  animation: highlight-red 1.5s ease forwards;
  z-index: 1;
  border-radius: 8px;
}

.brand-title span {
  position: relative;
  z-index: 2;
}

@keyframes highlight-red {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.brand-description {
  color: white;
  font-size: 18px;
  max-width: 800px;
  line-height: 1.6;
  font-weight: 600;
}

.about-header {
  text-align:  center;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.about-header .text h1 {
  color: #683d90;
  font-size: 28px;
  margin-bottom: 16px;
}

.about-header .text p {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}


.about-section {
  padding-top: 130px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 100px;
}

/* Split Section */
.about-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 100px;
}

.about-split.reverse {
  flex-direction: row-reverse;
}

.about-split .text {
  flex: 1;
  min-width: 300px;
}

.about-split .text h2 {
  color: #683d90;
  font-size: 28px;
  margin-bottom: 16px;
}

.about-split .text p {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

.about-split .image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-split .image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.about-split .image img:hover {
  transform: scale(1.02);
}


/* Karakter */
.left-char,
.right-char {
  animation: swing 3s ease-in-out infinite;
  transform-origin: bottom center;
  width: 240px;
  position: absolute;
  bottom: -50px;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}

.left-char {
  left: -100px;
}

.right-char {
  right: -100px;
}

@keyframes swing {
  0% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(2deg);
  }
}

/* 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;
}

.image-stack {
  position: relative;
  width: max-content;
  margin: 0 auto;
}

.image-stack img {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  display: block;
}

.image-stack .img-base {
  position: relative;
  z-index: 1;
  transform: rotate(-2deg);
}

.image-stack .img-top {
  position: absolute;
  top: 40px;
  left: 50px;
  z-index: 2;
  transform: rotate(2deg);
}

.image-stack {
  position: relative;
  width: max-content;
  margin: 0 auto;
}

.image-stack img {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  display: block;
}

.image-stack .img-base {
  position: relative;
  z-index: 1;
  transform: rotate(0) scale(1.05);
}

.image-stack .img-middle {
  position: absolute;
  top: -310px;
  left: 250px;
  z-index: 2;
  transform: rotate(4deg) scale(0.5);
}

.image-stack .img-front {
  position: absolute;
  top: 310px;
  left: -250px;
  z-index: 3;
  transform: rotate(-4deg) scale(0.5); /* LEBIH KECIL */
}
