/**
 * SENTIR-LY: VARIABLES Y ESTILOS BASE
 * Este archivo se carga primero y define la identidad visual.
 */

:root {
    /* --- COLORES PRINCIPALES --- */
    --color-primary: #fde7e3;      /* Rosa claro / Beige */
    --color-dark: #575756;         /* Gris oscuro principal */
    --color-white: #ffffff;
    --color-black: #000000;
    
    /* --- COLORES NEUTROS --- */
    --color-gray-light: #f5f5f5;
    --color-gray-medium: #d0d0d0;
    --color-gray-dark: #4a4a4a;
    
    /* --- COLORES DE ACENTO --- */
    --color-rose-dark: #CF9CAD;    /* Rosa Malva */
    --color-oliva: #9EBA9C;        /* Verde Oliva */

    /* --- TIPOGRAFÍA --- */
    --font-display: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-script: 'Pinyon Script', cursive;

    /* --- ESPACIADO --- */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* --- TRANSICIONES --- */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.7s ease;

    /* --- EFECTOS (NUEVO) --- */
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-light: rgba(253, 231, 227, 0.1);

    /* --- NIVELES DE CAPAS (Z-INDEX) --- */
    --z-header: 1000;
    --z-modal: 2000;
}

/* ============================================
   RESET Y ESTILOS BASE
   ============================================ */
/* ===============================
   MONTSERRAT
   =============================== */

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* ===============================
   PLAYFAIR DISPLAY
   =============================== */

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-v40-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* ===============================
   PINYON SCRIPT
   =============================== */

@font-face {
    font-family: 'Pinyon Script';
    src: url('../fonts/pinyon-script-v24-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* ===============================
   MATERIAL SYMBOLS OUTLINED
   =============================== */

@font-face {
    font-family: 'Material Symbols Outlined';
    src: url('../fonts/material-symbols-outlined-v315-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Evita saltos cuando aparece el scroll del modal */
    overflow-x: hidden; 
}

body {
    font-family: var(--font-sans);
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- ESTRUCTURA --- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container--narrow {
    max-width: 800px;
}

/* --- ACCESIBILIDAD --- */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}