/*
 * Base Styles
 * Variables, Reset, Typography, Layout
 */

:root {
    --primary-bg: #0A0A12;
    --secondary-bg: #12101E;
    --accent-bg: #1A1630;
    --accent-cyan: #D4AF37;
    --accent-violet: #D4AF37;
    --accent-cream: #F5D76E;
    --accent-bronze: #8B7335;
    --accent-bronze-soft: #B8960F;
    --text-primary: #F5D76E;
    --text-secondary: #fff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-color: rgba(212, 175, 55, 0.25);
    --radius-sm: 4px;
    --radius-md: 8px;
    --transition-fast: 0.2s ease;
    --transition-slow: 0.3s ease;
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.28);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

input,
textarea,
select,
button {
    font-family: 'Inter', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

.page-header h1,
.blog-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    padding: 20px 0 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #D4AF37;
}

.breadcrumbs__sep {
    margin: 0 2px;
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumbs__current {
    color: rgba(255, 255, 255, 0.7);
}
