/* Base typography and elements */
body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-black);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: var(--line-height-tight);
  font-weight: normal;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

a:hover {
  opacity: 0.7;
}

/* Disable right-click on images (protection discrète) */
img {
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* Allow clicks on containers for navigation */
a img {
  pointer-events: auto;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
