:root {
    --primary-bg: #3A4F4F;
    --secondary-bg: #E0E5E0;
    --accent-light: #C0D8C0;
    --accent-muted: #A9B7A9;
    --text-main: #333333;
    --text-on-dark: #E0E5E0;
    --spacing-unit: 8px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Navigation */
header {
    background-color: var(--primary-bg);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--accent-muted);
}

.nav-link {
    color: var(--text-on-dark) !important;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0 15px;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-dark);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 79, 79, 0.6);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-line {
    width: 60px;
    height: 2px;
    background-color: var(--accent-light);
    margin: 20px auto;
}

/* Museum Layouts */
.section-padding {
    padding: 120px 0;
}

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

.img-museum {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
    display: block;
    margin: 0 auto;
    max-height: 500px;
    object-fit: cover;
}

.img-museum:hover {
    filter: grayscale(0%);
}

/* Specific elements */
.timeline {
    position: relative;
    padding: 40px 0;
}

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

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    border: 1px solid var(--accent-muted);
}

.matrix-item {
    padding: 30px;
    border: 1px solid var(--secondary-bg);
}

.quote-block {
    font-size: 1.5rem;
    font-style: italic;
    border-left: 4px solid var(--accent-light);
    padding-left: 30px;
    margin: 40px 0;
}

/* Cards */
.info-card {
    background: var(--secondary-bg);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

/* Buttons */
.btn-quajor {
    background-color: transparent;
    border: 1px solid var(--primary-bg);
    color: var(--primary-bg);
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-quajor:hover {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
    color: var(--primary-bg);
}

/* Footer */
footer {
    background-color: var(--primary-bg);
    color: var(--text-on-dark);
    padding: 80px 0 40px;
}

.footer-link {
    color: var(--accent-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--accent-light);
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 3px solid var(--primary-bg);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .section-padding { padding: 60px 0; }
    .matrix-grid { grid-template-columns: 1fr; }
}