@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900; /* range da thin (100) a black (900) */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

h1 {
  font-weight: 700;
}

.navbar-link {
  display: inline-block;
  position: relative;
  cursor: pointer;;
}

.navbar-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #e98800;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.navbar-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  display: block;
}

.image-container::after {
  content: "© 2025 Felicia Baggi";
  position: absolute;
  bottom: 8px;
  right: 10px;
  color: white;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 6px;
  border-radius: 4px;
  pointer-events: none; /* così non interferisce con i click */
}