@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* ================================================
   Sofía Abud — Portfolio Base Stylesheet
   ================================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent-color: #888888;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #ffffff;
  color: #1a1a1a;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
.serif-title {
  font-family: 'Gambetta', serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img,
audio {
  display: block;
  width: 100%;
  /* Friction layers: disable long-press and text selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  height: 100%;
  object-fit: cover;
}