/*
 * Theme Name:   Astra Child EU
 * Theme URI:    https://ecopcf-ai.com/
 * Description:  US-specific child theme with blue-dominant color scheme (DSGVO-compliant)
 * Author:       Hagi
 * Author URI:   https://ecopcf-ai.com/
 * Template:     astra
 * Version:      1.0.0
 * License:      GNU General Public License v2 or later
 * License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain:  astra-child-us
 */

/* ============================================
 FONT-FACE DECLARATIONS (Self-Hosted)                                                           *
 ============================================ */

/* Inter Font Family */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Inter Light'),
    url('./fonts/inter/inter-v13-latin-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Inter Regular'),
    url('./fonts/inter/inter-v13-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Inter Medium'),
    url('./fonts/inter/inter-v13-latin-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Inter SemiBold'),
    url('./fonts/inter/inter-v13-latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Inter Bold'),
    url('./fonts/inter/inter-v13-latin-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: local('Inter ExtraBold'),
    url('./fonts/inter/inter-v13-latin-800.woff2') format('woff2');
}

/* Space Grotesk Font Family */
@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Space Grotesk Regular'),
    url('./fonts/space-grotesk/space-grotesk-v16-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Space Grotesk Medium'),
    url('./fonts/space-grotesk/space-grotesk-v16-latin-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Space Grotesk SemiBold'),
    url('./fonts/space-grotesk/space-grotesk-v16-latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Space Grotesk Bold'),
    url('./fonts/space-grotesk/space-grotesk-v16-latin-700.woff2') format('woff2');
}


/* ============================================
 CSS CUSTOM PROPERTIES - US VERSION                                                             *
 ============================================ */

:root {

    /* ==================== COLORS ==================== */

    /* Primary Colors (Blue-dominant for US) */
    --color-primary: #00008B;
    --color-primary-hover: #000066;
    --color-primary-light: #1E90FF;
    --color-primary-lighter: #E3F2FD;

    /* Secondary Colors */
    --color-secondary: #2E8B57;
    --color-secondary-hover: #1A5C3E;
    --color-secondary-light: #E8F5E9;

    /* Accent Colors */
    --color-accent: #00D4FF;
    --color-accent-hover: #00B8E6;

    /* Neutral Colors */
    --color-text-primary: #2C3E50;
    --color-text-secondary: #708090;
    --color-text-light: #95A5A6;

    /* Background Colors */
    --color-bg-primary: #FFFFFF;
    --color-bg-secondary: #F8F9FA;
    --color-bg-tertiary: #E3F2FD;
    --color-bg-dark: #2C3E50;

    /* Border & Divider Colors */
    --color-border: #E0E0E0;
    --color-border-dark: #CCCCCC;
    --color-divider: #F0F0F0;

    /* Status Colors */
    --color-success: #28A745;
    --color-warning: #FFC107;
    --color-error: #DC3545;
    --color-info: #17A2B8;


    /* ==================== TYPOGRAPHY ==================== */

    /* Font Families with System Font Fallbacks */
    --font-primary: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;

    /* [Rest identical to EU version - Font Weights, Sizes, etc.] */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    --font-size-base: 16px;

    --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --font-size-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --font-size-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --font-size-md: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --font-size-lg: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --font-size-xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --font-size-2xl: clamp(2rem, 1.7rem + 1.5vw, 2.75rem);
    --font-size-3xl: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
    --font-size-4xl: clamp(3rem, 2.5rem + 3vw, 4.5rem);

    --line-height-tight: 1.2;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 1.75;

    --letter-spacing-tight: -0.02em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.025em;
    --letter-spacing-wider: 0.05em;

    /* [Rest of spacing, borders, shadows, etc. identical to EU] */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    --section-padding-y: clamp(3rem, 5vw, 6rem);
    --section-padding-x: clamp(1rem, 3vw, 2rem);

    --border-width: 1px;
    --border-width-thick: 2px;

    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;

    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* [All typography, button, section styles identical to EU version] */
/* Copy the entire Typography, Buttons, Sections, Astra Overrides, and Utility sections from EU */
