/* Import Figtree font */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;600;700;800&display=swap');

body {
  font-family: 'Figtree', sans-serif;
}

/* Logo navbar */
.logo-img {
  height: 70px;
  transition: 0.3s ease;
}

.navbar.scrolled .logo-img {
  height: 50px;
}

/* Hero */
.carousel-hero {
  height: 100vh;
  position: relative;
}

.hero-img {
  height: 100vh;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  top: 0;
}

/* Hero Text */
.hero-title {
  font-size: 3rem;
  font-weight: 800;
}

.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .logo-img {
    height: 50px;
  }
}

/* Warna utama sesuai tampilan Anda */
.text-purple {
  color: #4b1b78;
}

.btn-purple {
  background-color: #4b1b78;
  color: white;
  transition: 0.3s;
}

.btn-purple:hover {
  background-color: #3a145f;
  color: white;
}

#project img {
  width: 100%;
  height: auto;
  transition: 0.3s ease;
}

.project-card img:hover {
  transform: scale(1.03);
}

/* CTA SECTION */
#cta .cta-box {
  background: linear-gradient(135deg, #2b2b6e, #a52a6c);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

/* Thin white line */
#cta .cta-line {
  width: 70px;
  height: 3px;
  background: white;
  opacity: 0.7;
  border: none;
}

/* Image styling */
.cta-person {
  max-height: 380px;
  object-fit: contain;
  display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #cta .cta-box {
    text-align: center;
  }

  .cta-person {
    max-height: 280px;
    margin-top: 20px;
  }
}

/* Footer */
.footer-area {
  border-top: 1px solid #e5e5e5;
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  padding: 12px 22px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
  z-index: 9999;
}

.floating-wa-btn:hover {
  background: #1ebe5d;
  color: #fff;
}
