/* FJ Motors - Luxury Design System */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&display=swap');

:root {
    /* Colors - Luxury Light/Beige Theme */
    --color-bg-primary: #ffffff;
    /* White */
    --color-bg-secondary: #fdfcf8;
    /* Very light cream */
    --color-bg-card: #f4f0e6;
    /* Elegant Beige */
    --color-background-alt: #f8f5f0;
    /* Alt Beige */

    --color-text-primary: #1a1a1a;
    /* Dark Charcoal */
    --color-text-secondary: #4a4a4a;
    /* Dark Grey */
    --color-text-muted: #777777;
    /* Muted Grey */

    --color-accent-gold: #c5a059;
    /* Muted Elegant Gold */
    --color-accent-gold-dim: #d4b87ae2;
    --color-accent-platinum: #cccccc;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    --shadow-gold: 0 4px 20px rgba(197, 160, 89, 0.25);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    line-height: 1.2;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-gold {
    color: var(--color-accent-gold);
}

.text-center {
    text-align: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: transparent;
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
}

.btn-primary:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-bg-primary);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background-color: var(--color-bg-card);
    color: var(--color-text-primary);
}

.btn-secondary:hover {
    background-color: var(--color-accent-platinum);
    color: var(--color-bg-primary);
}

/* Section Common */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.2rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}