@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Memastikan menu mobile memiliki transisi halus */
#mobile-menu {
  transition: max-height 0.3s ease-out;
}
body {
  font-family: "Inter", system_ui, sans-serif;
}
.logo-font {
  font-family: "Space Grotesk", sans-serif;
}

.hero-bg {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.dark .hero-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e2937 100%);
}

.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.dark .glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.nav-link {
  position: relative;
}
.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #22d3ee;
}
.nav-link.active:after,
.nav-link:hover:after {
  width: 100%;
}

.modal {
  animation: modalFade 0.3s ease;
}
@keyframes modalFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
