/* ============================================
   CONFIGURATION FILE - EDIT HERE
   ============================================
   This file contains all customization variables
   for the site. Modify these values to adapt
   the design for each client.
   ============================================ */

:root {
    /* ----------------------------------------
       PRIMARY COLORS
       ---------------------------------------- */
    --color-primary: #8B4513;
    --color-primary-dark: #654321;
    --color-primary-light: #A0522D;

    --color-secondary: #2C1810;
    --color-secondary-light: #3E2414;

    --color-accent: #CD853F;
    --color-accent-light: #DEB887;

    /* ----------------------------------------
       BACKGROUND COLORS
       ---------------------------------------- */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAF8F5;
    --bg-dark: #2C1810;
    --bg-card: #FFFFFF;

    /* ----------------------------------------
       TEXT COLORS
       ---------------------------------------- */
    --text-primary: #1B1B1B;
    --text-secondary: #4A4A4A;
    --text-light: #7A7A7A;
    --text-on-dark: #FFFFFF;
    --text-on-primary: #FFFFFF;

    /* ----------------------------------------
       TYPOGRAPHY
       ---------------------------------------- */
    --font-heading: 'Crimson Text', Georgia, serif;
    --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font sizes */
    --text-xs: 0.875rem;
    --text-sm: 1rem;
    --text-base: 1.125rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 1.75rem;
    --text-3xl: 2.25rem;
    --text-4xl: 3rem;
    --text-5xl: 4rem;
    --text-6xl: 5rem;

    /* ----------------------------------------
       SPACING
       ---------------------------------------- */
    --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;

    /* ----------------------------------------
       BORDERS AND SHADOWS
       ---------------------------------------- */
    --border-radius-sm: 2px;
    --border-radius-md: 4px;
    --border-radius-lg: 8px;
    --border-radius-xl: 12px;
    --border-radius-full: 9999px;

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

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

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

    /* ----------------------------------------
       IMAGES
       ---------------------------------------- */
    --hero-bg-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920');
}

@media (max-width: 768px) {
    :root {
        --text-5xl: 2.5rem;
        --text-6xl: 3rem;
        --container-padding: 1rem;
    }
}
