/* ==========================================================================
   Design Tokens — Intasecotas Theme
   ========================================================================== */

/* Font Faces */
@font-face {
    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/be-vietnam-pro/be-vietnam-pro-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/be-vietnam-pro/be-vietnam-pro-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/be-vietnam-pro/be-vietnam-pro-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/be-vietnam-pro/be-vietnam-pro-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/bebas-neue/bebas-neue-v14-latin-regular.woff2') format('woff2');
}

/* Custom Properties */
:root {
    /* Colors */
    --color-primary: #116866;
    --color-primary-dark: #0d5250;
    --color-primary-light: #178380;
    --color-secondary: #178380;
    --color-accent: #DD0088;
    --color-accent-dark: #bb0073;
    --color-bg: #F5F5F5;
    --color-bg-white: #FFFFFF;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-inverse: #FFFFFF;
    --color-border: #E0E0E0;
    --color-success: #28a745;
    --color-error: #dc3545;

    /* Typography */
    --font-primary: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Bebas Neue', Impact, sans-serif;

    /* Font Sizes (fluid) */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
    --text-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    --text-2xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --text-3xl: clamp(2.5rem, 2rem + 3vw, 4rem);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-section: clamp(3rem, 5vw, 6rem);

    /* Layout */
    --container-max: 1200px;
    --container-padding: clamp(1rem, 3vw, 2rem);
    --header-height: 80px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 2px 8px rgba(139, 184, 181, 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 250ms ease;
    --transition-slow: 400ms ease;
}
