/* ============================================
   ARCHIVO DE CONFIGURACIÓN - EDITAR AQUÍ
   ============================================
   Este archivo contiene todas las variables de
   personalización del sitio. Modifica estos valores
   para adaptar el diseño a cada cliente.
   ============================================ */

:root {
    /* ----------------------------------------
       COLORES PRINCIPALES
       ---------------------------------------- */
    /* Color principal del negocio (botones, acentos) */
    --color-primary: #8B4513;
    --color-primary-dark: #6B3410;
    --color-primary-light: #A0522D;

    /* Color secundario (fondos oscuros, texto) */
    --color-secondary: #2C1810;
    --color-secondary-light: #3D241A;

    /* Color de acento (detalles especiales) */
    --color-accent: #D4A574;
    --color-accent-light: #E8C9A8;

    /* ----------------------------------------
       COLORES DE FONDO
       ---------------------------------------- */
    --bg-primary: #FFFBF7;
    --bg-secondary: #F5EDE6;
    --bg-dark: #2C1810;
    --bg-card: #FFFFFF;

    /* ----------------------------------------
       COLORES DE TEXTO
       ---------------------------------------- */
    --text-primary: #2C1810;
    --text-secondary: #5C4033;
    --text-light: #8B7355;
    --text-on-dark: #FFFBF7;
    --text-on-primary: #FFFFFF;

    /* ----------------------------------------
       TIPOGRAFÍA
       ---------------------------------------- */
    /* Fuente para títulos (elegante, con personalidad) */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    
    /* Fuente para cuerpo de texto (legible, moderna) */
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Tamaños de fuente */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;

    /* ----------------------------------------
       ESPACIADO
       ---------------------------------------- */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* ----------------------------------------
       BORDES Y SOMBRAS
       ---------------------------------------- */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(44, 24, 16, 0.05);
    --shadow-md: 0 4px 6px rgba(44, 24, 16, 0.07);
    --shadow-lg: 0 10px 25px rgba(44, 24, 16, 0.1);
    --shadow-xl: 0 20px 40px rgba(44, 24, 16, 0.15);

    /* ----------------------------------------
       TRANSICIONES
       ---------------------------------------- */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* ----------------------------------------
       LAYOUT
       ---------------------------------------- */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    --navbar-height: 80px;

    /* ----------------------------------------
       IMÁGENES
       ---------------------------------------- */
    /* Imagen de fondo del hero (cambiar URL) */
    --hero-bg-image: url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?w=1920');
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    :root {
        --text-5xl: 2.5rem;
        --text-6xl: 3rem;
        --container-padding: 1rem;
        --navbar-height: 70px;
    }
}

