/* ════════════════════════════════════════
   ELENDIL STUDIO — GLOBAL STYLESHEET
   Typography & shared base rules.
   Loaded via includes/header.php on every page.
   Page-specific styles (heroes, sections) override
   these via class selectors with higher specificity.
   ════════════════════════════════════════ */

/* ----- Reset ----- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ----- Base typography ----- */
body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 300;
  background: #f5f3f0;
  color: #000000;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-family: 'Lato', sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
}

h2 {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ----- Shared layout ----- */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
