@charset "UTF-8";
/* CSS Document */

/* --- UNIVERSAL BOX-SIZING FIX --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* --- FONTS --- */
.syne-tactile-regular {
  font-family: "Syne Tactile", system-ui;
  font-weight: 400;
  font-style: normal;
}

.syne-mono-regular {
  font-family: "Syne Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

/* --- GENERAL LAYOUT --- */
body {
	background: #CBD6FF;
    background: linear-gradient(175deg, rgba(203, 214, 255, 1) 0%, rgba(255, 250, 240, 1) 50%);
	margin: 0;
	text-align: center;
}

img { 
	margin: 25px;
}

h1 {
	text-decoration: none;
	font-family: "Syne Mono", monospace;
	color: #1B2872;
}

h2 {
  font-family: "Syne Tactile", system-ui;
  font-weight: 400;
  font-style: normal;
}

/* --- TOP HEADER BAR --- */
.top {
	position: sticky;
	top: 0;
	z-index: 500;
	font-family: "Syne", sans-serif;
	font-weight: 400;
	font-style: normal;
	width: 100%;
	background-color: #FFFAF0;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.top h1 {
	color: #FFFFFF;
}

/* --- FIXED NAVIGATION BAR (Flexbox) --- */
#nav {
	width: 100%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

#nav nav {
    display: flex; 
    align-items: center; 
    padding: 10px 40px;
}

#nav nav .logo-link {
    margin-right: auto;
    margin-left: 0;     
    padding: 0;
    width: 100px;
}

#nav nav .logo-link img {
    margin: 0; 
    width: 100%;
    display: block; 
}

/* Navigation Links */
.top a:link {
    text-decoration: none;
    color: #13396A;
    font-size: 1.5em;
    padding: 5px;
    margin-left: 30px; 
}

.top a:link { text-decoration: none; color: #13396A; }
.top a:visited { text-decoration: none; color: #3C2766; }
.top a:hover { text-decoration: none; color: #24C9D6; }
.top a:active { text-decoration: line-through; color: #CC27B4; }

/* --- CONTENT WRAPPERS --- */
#wrap, .wrap {
	text-align: left;
	margin-top: 30px;
	margin-bottom: 50px;
	margin-left: auto;
	margin-right: auto;
	width: 90%;
	padding: 10px;
}

.wrap h1, .wrap h2 {
    font-size: 5em;
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: 50px;
	color:#1B2872;
}

.wrap p {
	color: #1B2872;
}

/* --- HOMEPAGE SPECIFIC STYLES --- */
.splash-img {
    margin: 0;
    display: block;
    width: 100%;
}

.intro-text h1 {
    font-size: 4em;
    margin-top: 30px;
    margin-bottom: 20px;
}

.intro-text p {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 20px;
	color: #1B2872;
}

.featured-exhibit {
    background-color: #6171AD !important;
    margin-top: 0 !important;
    padding-top: 50px;
    padding-bottom: 70px;
}

.featured-exhibit .wrap {
    text-align: center;
    color: white;
}

.featured-exhibit h2 {
    color: #FF7FDD;
    font-size: 5em;
    margin-top: 20px;
}

.featured-exhibit h1 {
    color: #1B2872;
    font-size: 3em;
    margin-bottom: 30px;
}

.featured-exhibit p {
    font-family: 'Syne Mono', monospace;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #1B2872;
}

/* Homepage Call to Action Button */
.cta-button {
    background-color: #FFA9F2;
    color: #1B2872 !important;
    padding: 15px 40px;
    font-family: 'Syne Mono', monospace;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #7FFFD4;
    transform: translateY(-3px);
}

/* --- GALLERY SECTION (Art Page) --- */
.gallery {
	position: relative;
	top: 0;
	z-index: auto;
	width: 100%;
	background: #CBD6FF;
    background: linear-gradient(175deg, rgba(203, 214, 255, 1) 0%, rgba(255, 250, 240, 1) 50%);
	padding: 10px;
	margin-top: 0px;
	margin-bottom: 0px;	
}

.gallery h1 {
    font-size: 5em;
    text-align: center;
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: 50px;
}

.gallery h2 {
    font-size: 7.5em;
    text-align: center;
    margin-left: 0px;
    margin-bottom: 50px;
    margin-top: 50px;
    color: #1B2872;
}

/* --- ART GALLERY GRID --- */
.image-grid {
    display: flex;
    justify-content: center;
    gap: 20px; 
    flex-wrap: wrap; 
    margin-top: 20px;
}

.image-grid a {
    flex: 1 1 30%; 
    max-width: 32%;
}

.image-grid img {
    width: 100%;
    margin: 0; 
    transition: transform 0.3s ease; 
}

.image-grid img:hover {
    transform: scale(1.05); 
}

/* --- ARTIST BIOS PAGE STYLES --- */
.bios-container {
    max-width: 900px;
    margin-top: 40px;
}

.bio-card {
    background-color: #ffffff;
    border-left: 5px solid #5A5CA5;
    padding: 30px 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 4px;
}

.bio-card h2.bio-name {
    font-family: "Syne Tactile", system-ui;
    font-size: 3.5em;
    color: #1B2872;
    margin: 0;
    line-height: 1;
}

.bio-dates {
    display: block;
    font-family: "Syne Mono", monospace;
    font-size: 1.1rem;
    color: #CC27B4;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

.bio-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin: 0;
}

/* --- FOOTER --- */
footer {
    margin-top: 50px;
    padding: 30px;
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    color: #666;
    border-top: 1px solid #ccc;
    background-color: floralwhite;
}

/* --- GENERAL LINKS --- */
a:link { text-decoration: none; color: #13396A; }
a:visited { text-decoration: none; color: #3C2766; }
a:hover { text-decoration: none; color: #24C9D6; }
a:active { text-decoration: line-through; color: #CC27B4; }