:root {
    --primary: #2C3E50;
    --secondary: #ECF0F1;
    --accent-gold: #F39C12;
    --accent-teal: #1ABC9C;
    --accent-earth: #E74C3C;
    --text-dark: #34495E;
    --white: #FFFFFF;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--secondary);
    line-height: 1.8;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

h1 { font-size: 3.5rem; color: var(--primary); margin-bottom: 2rem; }
h2 { font-size: 2.2rem; color: var(--accent-teal); margin-bottom: 1.5rem; border-left: 5px solid var(--accent-gold); padding-left: 15px; }
h3 { font-size: 1.5rem; color: var(--primary); margin-top: 1.5rem; }

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

section {
    padding: 100px 0;
    background: var(--white);
    border-bottom: 1px solid #ddd;
}

.museum-frame {
    border: 1px solid #ccc;
    padding: 40px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

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

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

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

.hero-content h1 { color: var(--white); }

.btn-museum {
    background: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border: none;
    font-family: 'Oswald', sans-serif;
}

.btn-museum:hover {
    background: var(--accent-gold);
    color: var(--primary);
}

.card-museum {
    background: #fff;
    border: 1px solid #eee;
    padding: 0;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body { padding: 25px; }

.navbar {
    background: var(--primary);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar a {
    color: var(--white);
    text-decoration: none;
    margin-left: 30px;
    font-family: 'Oswald', sans-serif;
    transition: color 0.3s;
}

.navbar a:hover, .navbar a.active {
    color: var(--accent-teal);
}

footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    text-align: center;
}

.cookie-banner button {
    margin: 0 10px;
    padding: 5px 20px;
    cursor: pointer;
}

.stat-strip {
    display: flex;
    justify-content: space-around;
    background: var(--secondary);
    padding: 40px;
    border-radius: 4px;
}

.stat-item { text-align: center; }
.stat-item i { font-size: 2rem; color: var(--accent-teal); margin-bottom: 10px; }

.glossary-rail {
    border-left: 2px solid var(--accent-gold);
    padding-left: 30px;
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

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

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

.timeline-item {
    padding: 20px;
    border-left: 3px solid var(--accent-teal);
    margin-left: 20px;
    position: relative;
    margin-bottom: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 25px;
    width: 15px;
    height: 15px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    background: #f9f9f9;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

img { max-width: 100%; height: auto; display: block; margin: 20px 0; }