@import "pa.css";

/**
 * Porsche Ankauf – Custom Landing Page Styles
 * Child template: pa (inherits Cassiopeia)
 *
 * This file is loaded AFTER the parent Cassiopeia styles.
 * Add all landing-page-specific overrides and custom styles here.
 * ──────────────────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════
   1. CSS Custom Properties (Design Tokens)
   ═══════════════════════════════════════════ */
:root {
    /* Brand palette */
    --pa-primary: #1a1a1a;
    --pa-secondary: #b5985a;
    --pa-accent: #c9a961;
    --pa-bg: #fff;
    --pa-bg-alt: #f5f5f0;
    --pa-text: #1a1a1a;
    --pa-text-muted: #6b6b6b;
    --pa-border: #e0e0e0;

    /* Typography */
    --pa-font-body: 'Outfit', sans-serif;
    --pa-font-heading: 'Outfit', sans-serif;
    --pa-font-accent: 'Montserrat', sans-serif;
    --pa-font-decorative: 'Playfair Display', serif;

    /* Spacing scale */
    --pa-space-xs: 0.25rem;
    --pa-space-sm: 0.5rem;
    --pa-space-md: 1rem;
    --pa-space-lg: 2rem;
    --pa-space-xl: 3rem;
    --pa-space-2xl: 5rem;

    /* Layout */
    --pa-container-width: 1200px;
    --pa-border-radius: 4px;

    /* Transitions */
    --pa-transition: 0.3s ease;
}

