/* Custom Portfolio Stylesheet */
:root {
  --accent-color: #f59e0b;
  --accent-rgb: 245, 158, 11;
}

body {
  font-family: 'Inter', sans-serif;
}

/* Custom Palette Utility overrides */
.text-custom {
  color: var(--accent-color);
}
.bg-custom {
  background-color: var(--accent-color);
}
.border-custom {
  border-color: var(--accent-color);
}
.bg-custom-opacity {
  background-color: rgba(var(--accent-rgb), 0.1);
}
.shadow-custom-g {
  box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.15);
}

/* Base Nav transition animations */
.nav-link {
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.15em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--accent-color);
}

/* Responsive grid adaptations */
@media (max-width: 768px) {
  .nav-link {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}
