:root {
    --primary: #1E3A8A;
    --accent-amber: #D97706;
    --accent-emerald: #065F46;
    --accent-purple: #A78BFA;
    --bg-light: #F3F4F6;
    --text-dark: #333333;
    --border-color: #CCCCCC;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

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

h1 { font-size: 3.5rem; margin-bottom: 2rem; }
h2 { font-size: 2.5rem; margin-top: 3rem; margin-bottom: 1.5rem; border-left: 5px solid var(--accent-amber); padding-left: 1rem; }
h3 { font-size: 1.75rem; margin-top: 2rem; color: var(--accent-emerald); }

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

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

.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-color: var(--primary);
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
}

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

.section-divider {
    height: 100px;
    background: var(--bg-light);
    margin: 40px 0;
}

.museum-card {
    border: 1px solid var(--border-color);
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background: #fff;
}

.museum-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.img-fluid-custom {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    margin: 20px 0;
}

.sidebar-rail {
    border-right: 1px solid var(--border-color);
    padding-right: 30px;
}

.warning-box {
    border: 2px solid var(--accent-amber);
    background-color: #FFFBEB;
    padding: 30px;
    margin: 40px 0;
}

.nav-custom {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.footer-custom {
    background-color: var(--primary);
    color: #ffffff;
    padding: 60px 0 20px 0;
    margin-top: 100px;
}

.footer-custom a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-custom a:hover {
    color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 3px solid var(--primary);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    display: none;
}

.btn-museum {
    padding: 12px 30px;
    background-color: var(--primary);
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    transition: opacity 0.3s;
}

.btn-museum:hover {
    opacity: 0.8;
}

.stat-strip {
    background: var(--bg-light);
    padding: 15px;
    border-bottom: 2px solid var(--accent-purple);
    font-style: italic;
    margin-bottom: 20px;
}

.glossary-item {
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.glossary-term {
    font-weight: bold;
    display: block;
    color: var(--primary);
}

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