:root {
    --deep-slate-grey: #2F4F4F;
    --muted-gold: #B8860B;
    --forest-green: #228B22;
    --soft-terracotta: #CD5C5C;
    --light-grey: #F5F5F5;
    --medium-grey: #E0E0E0;
    --white: #FFFFFF;
    --text-main: #333333;
    --font-heading: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Georgia', serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--deep-slate-grey);
    margin-bottom: 1.5rem;
}

h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; }
h2 { font-size: 2.25rem; font-weight: 700; border-left: 5px solid var(--muted-gold); padding-left: 15px; }
h3 { font-size: 1.5rem; font-weight: 600; }

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 120px 0;
}

.bg-slate { background-color: var(--deep-slate-grey); color: var(--white); }
.bg-slate h1, .bg-slate h2, .bg-slate h3 { color: var(--white); }
.bg-light { background-color: var(--light-grey); }

/* Header */
header {
    background: var(--white);
    border-bottom: 1px solid var(--medium-grey);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--deep-slate-grey) !important;
    font-size: 1.8rem;
}

.nav-link {
    color: var(--deep-slate-grey) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--muted-gold) !important;
}

/* UI Elements */
.btn-xoleno {
    background-color: var(--forest-green);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 0;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-xoleno:hover {
    background-color: #2e9b2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--white);
}

.info-panel {
    border: 2px solid var(--muted-gold);
    padding: 30px;
    background: rgba(184, 134, 11, 0.05);
}

.glossary-rail {
    border-left: 1px solid var(--medium-grey);
    padding-left: 20px;
}

.glossary-item {
    margin-bottom: 20px;
    cursor: help;
}

.glossary-term {
    font-weight: bold;
    color: var(--muted-gold);
}

.card-custom {
    background: var(--white);
    border: 1px solid var(--medium-grey);
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.card-custom:hover {
    border-color: var(--muted-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-strip {
    background: var(--forest-green);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: bold;
    text-transform: uppercase;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--medium-grey);
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep-slate-grey);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    text-align: center;
}

.cookie-btns .btn {
    margin: 5px;
    border-radius: 0;
}

/* Footer */
footer {
    background: var(--deep-slate-grey);
    color: var(--medium-grey);
    padding: 80px 0 40px;
}

.footer-disclaimer {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.85rem;
}

img {
    max-width: 100%;
    height: auto;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

img:hover {
    filter: grayscale(0%);
}

.hero-overlay {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero-content {
    background: rgba(47, 79, 79, 0.85);
    padding: 60px;
    max-width: 800px;
    text-align: center;
}

.decorative-line {
    width: 100px;
    height: 4px;
    background: var(--muted-gold);
    margin: 30px auto;
}

.myth-fact {
    border-bottom: 1px solid var(--medium-grey);
    padding: 30px 0;
}

.fact-label {
    color: var(--forest-green);
    font-weight: bold;
}

.myth-label {
    color: var(--soft-terracotta);
    font-weight: bold;
}