:root {
    --primary-color: #2C3E50;
    --secondary-color: #ECF0F1;
    --accent-orange: #F39C12;
    --accent-green: #27AE60;
    --accent-red: #E74C3C;
    --text-dark: #333333;
    --text-muted: #BDC3C7;
    --bg-light: #FDFEFE;
    --max-width: 1400px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lora', 'Merriweather', serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, .navbar-brand, .btn-knerva {
    font-family: 'Montserrat', 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 2rem;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.5rem; }
}

.container-custom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.section-padding-small {
    padding: 80px 0;
}

/* Header & Navigation */
.navbar {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--secondary-color);
    padding: 1rem 0;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-orange) !important;
}

.nav-link.active {
    border-bottom: 2px solid var(--accent-orange);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.9);
}

/* Cards & UI */
.info-card {
    background: white;
    border: 1px solid var(--secondary-color);
    padding: 2rem;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.btn-knerva {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-knerva:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.bg-secondary-custom {
    background-color: var(--secondary-color);
}

.bg-primary-custom {
    background-color: var(--primary-color);
    color: white;
}

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

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

/* Utility */
.img-cinematic {
    box-shadow: 20px 20px 0px var(--secondary-color);
    max-width: 100%;
    height: auto;
}

.glossary-rail {
    border-left: 4px solid var(--accent-orange);
    padding-left: 20px;
}

.stat-strip {
    border-top: 1px solid var(--text-muted);
    border-bottom: 1px solid var(--text-muted);
    padding: 20px 0;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.disclaimer-box {
    border: 2px solid var(--accent-red);
    padding: 20px;
    margin: 20px 0;
}