:root {
    --primary-color: #004D40;
    --accent-gold: #D4AF37;
    --accent-rose: #B08A8A;
    --warm-grey: #616161;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.8;
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

header {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    color: var(--primary-color) !important;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.nav-link {
    color: var(--warm-grey) !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 15px;
    transition: color 0.3s ease;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 77, 64, 0.6);
}

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

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.card-museum {
    background: var(--white);
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card-museum:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-museum img {
    border-radius: 0;
    height: 250px;
    object-fit: cover;
}

.btn-museum {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-museum:hover {
    background: var(--accent-gold);
    color: var(--white);
    text-decoration: none;
}

.disclaimer-box {
    background: #E0F2F1;
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    margin: 40px 0;
}

.footer {
    background: var(--primary-color);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 40px;
}

.footer h3 {
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

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

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

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.glossary-rail {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
}

.stat-strip {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

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

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .timeline::before { left: 20px; }
    .timeline-item { width: 100%; left: 0 !important; padding-left: 50px; }
}