/* Color Palette Extracted from Logo */
:root {
    --bg-white: #ffffff;
    --text-black: #000000;
    --text-gray: #444444;
    
    /* Logo Accents */
    --cork-blue: #5a6cb2; 
    --cork-pink: #f34770; 
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-gray);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3 {
    color: var(--text-black);
    line-height: 1.2;
}

/* Layout Container */
.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

/* Header & Logo */
.site-header {
    padding: 3rem 0 2rem;
    text-align: center;
}

.logo {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Main Content Area */
main {
    flex: 1; /* Pushes footer to the bottom */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
}

.exhibition-notice {
    padding: 3rem 2rem;
    border-top: 4px solid var(--cork-blue);
    border-bottom: 4px solid var(--cork-pink);
    background-color: #fafafa;
    border-radius: 8px;
}

.exhibition-notice h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.exhibition-notice .coming-soon {
    font-size: 1.5rem;
    color: var(--cork-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.exhibition-notice p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.875rem;
    color: #888;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .exhibition-notice {
        padding: 2rem 1rem;
    }
    
    .exhibition-notice h1 {
        font-size: 2rem;
    }
}