:root {
    --primary: #2C3E50;
    --secondary: #A3BBAD;
    --accent: #E8C547;
    --neutral: #F2F2F2;
    --text: #333333;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background-color: #ffffff;
    padding-top: 70px;
}

h1, h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

.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;
}

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

.museum-card {
    background: var(--neutral);
    border: none;
    border-radius: 0;
    transition: all 0.4s ease;
    height: 100%;
}

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

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

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

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

.timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid var(--accent);
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
}

.cinematic-img {
    box-shadow: 20px 20px 60px rgba(0,0,0,0.2);
    max-width: 100%;
    height: auto;
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 0;
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-accent:hover {
    background-color: #d4b43d;
    color: var(--primary);
}

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

.nav-link {
    color: var(--primary) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.accordion .card {
    border: none;
    margin-bottom: 10px;
}

.accordion .card-header {
    background: var(--neutral);
    cursor: pointer;
}

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