/*
 * Tiltas Partners — Design Tokens
 *
 * Vendored locally from the former brand.proofbound.com/css/tokens.css (now offline).
 * Heading font switched from Crimson Text to Lora for proper Lithuanian glyph support.
 */

/* Google Fonts — Lora (headings) supports Lithuanian; Inter (body) does too */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --primary: #007bff;
    --primary-dark: #0056b3;
    --purple: #9333ea;
    --purple-dark: #7e22ce;
    --orange: #ff6b00;
    --orange-dark: #e65c00;

    /* Text */
    --text-dark: #212529;
    --text-secondary: #495057;
    --text-muted: #6c757d;
    --white: #ffffff;

    /* Backgrounds */
    --bg-light: #f8f9fa;
    --bg-mid: #e9ecef;
    --bg-dark: #dee2e6;

    /* Glass morphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: 20px;

    /* Typography */
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);

    /* Breakpoints (for reference — use in media queries) */
    /* --bp-mobile: 768px; */
}

/* Glass card base style */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* CTA button styles */
.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button--primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: var(--white);
}

.cta-button--orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
}

.cta-button--outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
