/* * {
  font-family: "Host Grotesk", sans-serif;
} */

body {
  background-color: #fffdf1;
  padding-top: 100px;
  min-height: calc(100vh - 100px);
  box-sizing: border-box;
  min-height: 90vh;
  position: relative;
  margin-bottom: 60px;
  font-family:
    "Host Grotesk",
    system-ui,
    -apple-system,
    sans-serif;
}

nav {
  background-color: rgb(255, 247, 238);
}

.bg-form {
  background-color: #fffdf1;
}

.nav-txt {
  font-family: "Josefin Sans", sans-serif;
}

/* Animasi dan efek professional */
.navbar {
  /* background: rgba(255, 255, 255, 0.95); */
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #2b2d42, #4a4e69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.25s ease;
}

.navbar-brand:hover {
  transform: scale(1.02) translateY(-1px);
}

.navbar-brand i {
  background: linear-gradient(145deg, #4361ee, #7209b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 6px;
  font-size: 1.8rem;
  vertical-align: middle;
}

.nav-icon {
  vertical-align: middle;
  margin-right: 5px;
}

/* Navbar link styling + animasi */
.nav-link {
  font-weight: 500;
  font-size: 1.1rem;
  color: #2b2d42 !important;
  margin: 0 0.25rem;
  padding: 0.5rem 1rem !important;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

/* Efek bounce halus pada hover */
.nav-link:hover {
  background-color: #f0f0f0; /* Abu-abu sangat muda */
  color: #222222 !important; /* Hitam soft */
  transform: translateY(-3px) scale(1.02);
  font-variation-settings:
    "FILL" 1,
    "wght" 500;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Bounce effect lebih terasa (opsional) */
.nav-link:active {
  transform: translateY(-1px) scale(0.98);
}

/* Underline animasi dari kiri ke kanan */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #333333, #000000);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 60%;
}

/* Toggle button (mobile) lebih elegan */
.navbar-toggler {
  border: none;
  padding: 8px 12px;
  border-radius: 30px;
  background: #c9c9c9;
  transition: 0.2s;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px #848383;
  outline: none;
}

.navbar-toggler:hover {
  box-shadow: 0 0 0 3px #848383;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Background saat scroll (bisa ditambah jika suka) */
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-text {
  margin-top: 120px;
  text-align: center;
  color: #2b2d42;
  font-weight: 600;
}

/* Smooth active link */
.nav-item .active {
  background-color: rgba(67, 97, 238, 0.12);
  color: #4361ee !important;
  font-weight: 600;
}

.copyright {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  font-size: 14px;
  color: #666; /* Sesuaikan dengan warna website */
  background-color: rgba(
    255,
    253,
    241,
    0.8
  ); /* Sedikit transparan sesuai background */
  padding: 8px 15px;
  border-radius: 20px; /* Opsional: membuatnya lebih soft */
  backdrop-filter: blur(5px); /* Efek kaca buram */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Bayangan ringan */
}

.detail-log {
  font-family: "Nokora", sans-serif;
}

/* Responsif untuk mobile */
@media (max-width: 768px) {
  .copyright {
    bottom: 15px;
    left: 15px;
    font-size: 12px;
    padding: 6px 12px;
    background-color: rgba(255, 253, 241, 0.95); /* Lebih solid di mobile */
  }
}