:root {
    --primary: #A7C5C9;
    --lavender: #E0BBE4;
    --purple: #957DAD;
    --rose: #D291BC;
    --gold: #FFC72C;
    --dark: #333333;
    --light: #F8F8F8;
    --white: #ffffff;
}

body {
    font-family: 'Merriweather', serif;
    color: var(--dark);
    line-height: 1.8;
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

header {
    background: var(--white);
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
}

nav a {
    margin-left: 30px;
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--purple);
}

.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

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

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--light);
    padding: 40px;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.cinematic-img {
    width: 100%;
    height: auto;
    box-shadow: 20px 20px 0 var(--lavender);
    filter: sepia(10%);
}

.timeline {
    border-left: 2px solid var(--primary);
    padding-left: 30px;
    margin: 40px 0;
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
}

.table-custom {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
}

.table-custom th, .table-custom td {
    padding: 20px;
    border: 1px solid #ddd;
    text-align: left;
}

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

.btn-hulena {
    background: var(--gold);
    color: var(--dark);
    padding: 15px 40px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    border: none;
    transition: all 0.3s;
}

.btn-hulena:hover {
    background: var(--purple);
    color: white;
}

.footer {
    background: #222;
    color: #ccc;
    padding: 80px 0;
    font-size: 14px;
}

.footer h3 { color: var(--white); }

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.glossary-rail {
    background: var(--light);
    padding: 20px;
    border-radius: 5px;
}

.stat-strip {
    display: flex;
    justify-content: space-around;
    background: var(--purple);
    color: white;
    padding: 40px 0;
    margin: 40px 0;
}

.disclaimer-box {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .container-custom { padding: 0 20px; }
}