/* Base Museum Style Variables */
:root {
    --bg-color: #FFF9E6; /* Warm off-white */
    --brand-color: #417B3B; /* Deep museum green */
    --text-color: #222222; /* Soft black */
    --text-light: #555555;
    
    --font-heading: 'Times New Roman', Times, serif;
    --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
    --spacing-lg: 120px;
    --spacing-md: 60px;
    --spacing-sm: 30px;
}

/* Reset and Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: normal;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 64pt; line-height: 1.1; }
h2 { font-size: 48pt; line-height: 1.2; }
h3 { font-size: 24pt; line-height: 1.3; }

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.4s ease, opacity 0.4s ease;
}

a:hover {
    opacity: 0.7;
}

/* Utilities */
.divider {
    width: 90%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

.center-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
}

/* Layout */
.section {
    padding: var(--spacing-lg) 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.grid-2.reverse .text-content {
    order: -1;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

/* Header */
.museum-header {
    background-color: var(--brand-color);
    color: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: sticky;
    top: 0;
    z-index: 100;
}

.museum-header .logo {
    font-family: var(--font-heading);
    font-size: 24pt;
    letter-spacing: 1px;
}

.museum-header nav a {
    color: #FFF;
    margin-left: 30px;
    font-size: 14pt;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 5%;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('assets/images/image_6_(1)_1772778079419.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--brand-color);
    color: #FFF;
    border-radius: 50px; /* Rounded minimal */
    font-size: 16pt;
    margin-top: 20px;
    transition: background-color 0.4s ease, transform 0.4s ease;
}

.btn:hover {
    background-color: #2e5929;
    transform: translateY(-2px);
    opacity: 1;
    color: #FFF;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.link {
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}

/* Art Frames / Image Placeholders */
.art-frame {
    background-color: #EBE8E0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-style: italic;
    overflow: hidden;
}

.image-placeholder { aspect-ratio: 4/3; }
.video-placeholder { aspect-ratio: 16/9; width: 100%; max-width: 1000px; margin: 0 auto; }
.card-image { aspect-ratio: 1/1; margin-bottom: var(--spacing-sm); }
.map-placeholder { aspect-ratio: 16/9; }

/* Visit List */
.visit-details {
    list-style: none;
    margin-bottom: 30px;
}
.visit-details li { margin-bottom: 15px; }

/* Footer */
.museum-footer {
    background-color: var(--brand-color);
    color: #FFF;
    padding: var(--spacing-lg) 5% var(--spacing-sm);
}

.museum-footer a { color: rgba(255,255,255,0.8); }
.museum-footer a:hover { color: #FFF; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    color: #FFF;
}

.footer-links h4 {
    color: #FFF;
    font-family: var(--font-body);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: var(--spacing-sm);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    display: flex;
    justify-content: space-between;
}

/* Animations - Soft Cinematic */
.cinematic-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), 
                transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cinematic-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    h1 { font-size: 42pt; }
    h2 { font-size: 32pt; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-2.reverse .text-content { order: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    h1 { font-size: 32pt; }
    .footer-grid { grid-template-columns: 1fr; }
    .museum-header nav { display: none; } /* Simplified for mobile */
}