:root {
    --navy: #002147;
    --mustard: #E3B448;
    --light-grey: #F4F4F4;
    --beige: #D2B48C;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-muted: #666666;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Lora', serif;
    color: var(--navy);
}

header {
    background-color: var(--white);
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.nav-link {
    color: var(--navy) !important;
    font-weight: 400;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

section {
    padding: 100px 0;
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 33, 71, 0.6), rgba(0, 33, 71, 0.6)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    background: rgba(0, 33, 71, 0.4);
    padding: 40px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-content h2 {
    color: var(--mustard);
    font-size: 1.5rem;
    font-weight: 300;
}

.btn-mustard {
    background-color: var(--mustard);
    color: var(--navy);
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    border-radius: 0;
}

.btn-mustard:hover {
    background-color: var(--navy);
    color: var(--mustard);
}

.museum-card {
    border: none;
    background: var(--light-grey);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid var(--mustard);
}

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

.museum-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.quote-block {
    background-color: var(--navy);
    color: var(--white);
    padding: 60px;
    position: relative;
    margin: 40px 0;
}

.quote-block::before {
    content: '"';
    font-family: 'Lora', serif;
    font-size: 10rem;
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.1;
}

.footer {
    background-color: var(--navy);
    color: var(--white);
}

.footer h5, .footer-brand {
    color: var(--mustard);
}

.footer a {
    color: var(--light-grey);
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--mustard);
    text-decoration: none;
}

.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 40px 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: var(--white);
    padding: 15px 0;
    z-index: 2000;
    display: none;
}

details summary {
    cursor: pointer;
    padding: 15px;
    background: var(--light-grey);
    margin-bottom: 10px;
    font-weight: bold;
    list-style: none;
}

details[open] summary {
    background: var(--mustard);
}

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

.matrix-item {
    border: 1px solid var(--beige);
    padding: 20px;
    text-align: center;
}

.section-accent {
    background-color: var(--beige);
    padding: 2px 10px;
}

.disclaimer-box {
    border-left: 5px solid var(--mustard);
    background: var(--light-grey);
    padding: 20px;
    margin: 20px 0;
}

.signature-line {
    width: 100px;
    height: 3px;
    background: var(--mustard);
    margin: 20px 0;
}