/* ---------------- Navbar ---------------- */
.nav-btn {
  position: relative;
  padding: 8px 16px;
  font-weight: 500;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: #1f2937;
  transition: color 0.3s;
}
.nav-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #3b82f6;
  transition: width 0.3s;
}
.nav-btn:hover {
  color: #1d4ed8;
}
.nav-btn:hover::after {
  width: 100%;
}
#menuToggle {
  display: none !important;
}
/* ========== BANNER ========== */
    .banner {
      width: 100%;
      height: 461px;
      background: url("images/about-banner.jpg") no-repeat center center/cover;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      margin-top: 70px;
      position: relative;
      overflow: hidden;
    }

    .banner::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      top: 0;
      left: 0;
    }

    .banner h1 {
      position: relative;
      font-size: 48px;
      text-transform: uppercase;
      letter-spacing: 2px;
      z-index: 1;
      animation: fadeIn 2s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

/* Theme button */
.theme-btn {
  background-color: #facc15;
  color: #1f2937;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.theme-btn:hover {
  background-color: #ca8a04;
  color: white;
  transform: translateY(-3px);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

/* Instagram Section Styling */
.insta-box {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.insta-box:hover {
  transform: translateY(-5px);
}

/* Fade animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.5s; }
.delay-3 { transition-delay: 0.7s; }

/* Theme button */
.theme-btn {
  background-color: #facc15;
  color: #1f2937;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.theme-btn:hover {
  background-color: #ca8a04;
  color: white;
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: #f1e9e0;
  padding: 2.5rem 1rem;
  border-top: 1px solid #d6c5b4;
}

.footer-title {
  font-size: 1.25rem;
  color: #6a4a32;
  font-weight: 700;
}

.footer-subtitle {
  color: #6a4a32;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li a {
  color: #555;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #a6795d;
}

.footer-text {
  color: #555;
}

/*---- navbar always active ----*/
.nav-btn.active {
  color: #1d4ed8;
}

.nav-btn.active::after {
  width: 100%;
  background-color: #1d4ed8;
}
