/* ============================================================
   LILIANA MEDELA — PORTFOLIO
   Base: variables, reset, elementos globales
   ============================================================ */

/* @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@200;300;400&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Jost:wght@200;300;400&display=swap');

/* --- Variables --- */
:root {
  --color-bg:        #fafaf8;
  --color-text:      #000000;
  --color-muted:     #000000;
  --color-border:    #e0e0d8;
  --color-accent:    #1a1a18;
/*  --font-display:    'Cormorant Garamond', Georgia, serif; */
  --font-display:    'Didact Gothic', 'Helvetica Neue', sans-serif;
  --font-body:       'Jost', 'Helvetica Neue', sans-serif;
  --max-width:       994px;
  --gap:             2rem;
  --transition:      0.3s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* --- Contenido principal --- */
main {
  flex: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem 4rem;
  background-color: #d6d6d6;
  font-size: 1.2rem;
}

/* --- Responsivo global --- */
@media (max-width: 520px) {
  main {
    padding: 0 1rem 3rem;
  }
}
