/*
Theme Name: Inverness Art Co-Op
Theme URI: https://www.invernessartcoop.com
Author: IHC Technology
Author URI: https://ihctechnology.com
Description: Custom WordPress theme for Inverness Art Co-Op - A vibrant, colorful theme for an artist cooperative gallery in Downtown Inverness, Florida.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: inverness-art-coop
*/

:root {
    --black: #1a1a1a;
    --steel: #2a2a2a;
    --white: #f5f5f5;
    --light-text: #e8e8e8;
    --softer-text: #c5c5c5;
    --red: #e63946;
    --orange: #f77f00;
    --yellow: #fcbf49;
    --green: #06a77d;
    --blue: #118ab2;
    --purple: #7209b7;
    --pink: #f72585;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    background: var(--black);
    color: var(--light-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple)) 1;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--orange);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:nth-child(1):hover { color: var(--blue); }
.social-links a:nth-child(2):hover { color: var(--pink); }
.social-links a:nth-child(3):hover { color: #00f2ea; }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1541961017774-22349e4a1262?w=1600');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(26, 26, 26, 0.85) 0%,
        rgba(26, 26, 26, 0.75) 40%,
        rgba(26, 26, 26, 0.6) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 3;
    max-width: 1200px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 0 20px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.8), 2px 2px 4px rgba(0,0,0,1), -1px -1px 2px rgba(0,0,0,0.8);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.9));
}

.hero .subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(0,0,0,0.9), 2px 2px 4px rgba(0,0,0,1);
    font-weight: 500;
}

.hero .location {
    font-size: 1rem;
    color: var(--orange);
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px rgba(0,0,0,0.9), 2px 2px 4px rgba(0,0,0,1);
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(90deg, var(--red), var(--orange));
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(247, 127, 0, 0.6), 0 4px 15px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.2);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.cta-button:hover {
    box-shadow: 0 0 30px rgba(247, 127, 0, 0.9), 0 6px 20px rgba(0,0,0,0.9), inset 0 0 0 2px rgba(255,255,255,0.3);
    transform: translateY(-2px);
    color: var(--white);
}

/* Section Styling */
section {
    padding: 8rem 5%;
    position: relative;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
}

/* About Section */
.about {
    background: var(--steel);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-box {
    background: #1f1f1f;
    padding: 2rem;
    border-left: 3px solid;
    transition: transform 0.3s;
}

.feature-box:nth-child(1) { border-color: var(--red); }
.feature-box:nth-child(2) { border-color: var(--orange); }
.feature-box:nth-child(3) { border-color: var(--blue); }
.feature-box:nth-child(4) { border-color: var(--green); }

.feature-box:hover { transform: translateX(10px); }

.feature-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-box:nth-child(1) h3 { color: var(--red); }
.feature-box:nth-child(2) h3 { color: var(--orange); }
.feature-box:nth-child(3) h3 { color: var(--blue); }
.feature-box:nth-child(4) h3 { color: var(--green); }

.feature-box p { color: var(--softer-text); font-size: 0.95rem; }

/* Exhibitions Section */
.exhibitions { background: var(--black); }

.exhibition-list {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.exhibition-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    background: var(--steel);
    padding: 3rem;
    border-left: 4px solid;
    transition: transform 0.3s;
}

.exhibition-card:nth-child(1) { border-color: var(--red); }
.exhibition-card:nth-child(2) { border-color: var(--blue); }
.exhibition-card:nth-child(3) { border-color: var(--purple); }

.exhibition-card:hover { transform: translateX(10px); }

.exhibition-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.exhibition-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.exhibition-card:nth-child(1) .exhibition-image::before { background: linear-gradient(135deg, rgba(230, 57, 70, 0.7), rgba(247, 127, 0, 0.7)); }
.exhibition-card:nth-child(2) .exhibition-image::before { background: linear-gradient(135deg, rgba(17, 138, 178, 0.7), rgba(114, 9, 183, 0.7)); }
.exhibition-card:nth-child(3) .exhibition-image::before { background: linear-gradient(135deg, rgba(6, 167, 125, 0.7), rgba(17, 138, 178, 0.7)); }

.exhibition-image i { position: relative; z-index: 2; }

.exhibition-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.exhibition-date {
    color: var(--orange);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.exhibition-info p { color: var(--softer-text); line-height: 1.8; margin-bottom: 1rem; }

/* Calendar Section */
.calendar-section { background: var(--steel); }

.calendar-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.calendar-intro p { font-size: 1.2rem; color: var(--softer-text); line-height: 1.8; }

.calendar-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #1f1f1f;
    padding: 3rem;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple)) 1;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--steel);
}

.calendar-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calendar-nav { display: flex; gap: 1rem; }

.calendar-nav button {
    background: var(--steel);
    border: 1px solid var(--orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.calendar-nav button:hover { background: var(--orange); color: var(--black); }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day-label {
    text-align: center;
    font-weight: 600;
    padding: 1rem 0.5rem;
    color: var(--orange);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    font-size: 0.9rem;
    background: rgba(247, 127, 0, 0.1);
    border-bottom: 2px solid var(--orange);
}

.calendar-day {
    min-height: 100px;
    background: var(--steel);
    border: 1px solid #333;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.calendar-day:hover { background: #333; }

.calendar-day.empty { 
    background: rgba(26, 26, 26, 0.5); 
    cursor: default;
}

.calendar-day.empty:hover { background: rgba(26, 26, 26, 0.5); }

.calendar-day.has-event { 
    border: 2px solid var(--orange); 
    background: linear-gradient(135deg, rgba(247, 127, 0, 0.15), rgba(230, 57, 70, 0.15));
}

.calendar-day.has-event:hover {
    background: linear-gradient(135deg, rgba(247, 127, 0, 0.25), rgba(230, 57, 70, 0.25));
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(247, 127, 0, 0.3);
}

.day-number { 
    font-size: 1.1rem; 
    font-weight: 600; 
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.calendar-day.has-event .day-number {
    color: var(--orange);
}

.day-event-preview { 
    font-size: 0.75rem; 
    color: var(--white);
    background: linear-gradient(90deg, var(--red), var(--orange));
    padding: 0.4rem 0.5rem;
    border-radius: 3px;
    margin-top: auto;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--softer-text);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-dot.event {
    background: linear-gradient(90deg, var(--red), var(--orange));
    border: 1px solid var(--orange);
}

/* Event Modal */
.event-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--black);
    border: 3px solid var(--orange);
    padding: 3rem;
    z-index: 2000;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.event-modal.active { display: block; }

.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1999;
}

.modal-overlay.active { display: block; }

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--orange);
    font-size: 2rem;
    cursor: pointer;
}

.modal-close:hover { color: var(--red); }

.event-details h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--orange);
}

.event-meta { display: flex; gap: 2rem; margin: 1.5rem 0; flex-wrap: wrap; }
.event-meta-item { display: flex; align-items: center; gap: 0.5rem; }
.event-meta-item i { color: var(--orange); }
.event-description { line-height: 1.8; margin-bottom: 2rem; }

.signup-form input,
.signup-form textarea {
    width: 100%;
    background: var(--steel);
    border: 1px solid #333;
    color: var(--white);
    padding: 1rem;
    margin-bottom: 1rem;
    font-family: 'Work Sans', sans-serif;
}

.signup-form button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, var(--red), var(--orange));
    border: none;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.signup-form button:hover { background: linear-gradient(90deg, var(--orange), var(--yellow)); }

/* Membership Section */
.membership { background: var(--black); }

.membership-content { max-width: 1400px; margin: 0 auto; }

.membership-intro { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
.membership-intro p { font-size: 1.2rem; color: var(--softer-text); line-height: 1.8; margin-bottom: 2rem; }

.membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.tier-card {
    background: var(--steel);
    padding: 3rem;
    text-align: center;
    border-top: 4px solid;
    transition: all 0.3s;
}

.tier-card:nth-child(1) { border-color: var(--red); }
.tier-card:nth-child(2) { border-color: var(--blue); }

.tier-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }

.tier-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.tier-card:nth-child(1) h3 { color: var(--red); }
.tier-card:nth-child(2) h3 { color: var(--blue); }

.tier-subtitle { font-size: 1rem; color: var(--orange); margin-bottom: 2rem; font-weight: 600; }
.tier-price { font-size: 1.8rem; font-weight: 700; margin-bottom: 2rem; color: var(--white); }

.tier-features { list-style: none; margin-bottom: 2rem; text-align: left; }
.tier-features li { padding: 0.8rem 0; color: var(--softer-text); border-bottom: 1px solid #333; }
.tier-features li:last-child { border-bottom: none; }
.tier-features li i { color: var(--orange); margin-right: 0.5rem; }

/* Location Section */
.location-section { background: var(--steel); }

.location-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.location-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--orange);
}

.location-info p { font-size: 1.1rem; color: var(--softer-text); line-height: 1.8; margin-bottom: 1rem; }

.address-box {
    background: #1f1f1f;
    padding: 2rem;
    margin-top: 2rem;
    border-left: 4px solid var(--red);
}

.address-box p { font-size: 1.2rem; color: var(--white); margin-bottom: 0.5rem; }

.neighbors { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }

.neighbor-tag {
    background: linear-gradient(135deg, var(--red), var(--orange));
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    color: var(--white);
    letter-spacing: 1px;
}

.map-placeholder {
    background: #1f1f1f;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--orange);
    position: relative;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 10px rgba(247, 127, 0, 0.2), 0 0 0 20px rgba(247, 127, 0, 0.1);
}

.map-placeholder p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--orange);
    text-transform: uppercase;
}

/* Grand Opening */
.grand-opening {
    background: linear-gradient(135deg, var(--black) 0%, rgba(230, 57, 70, 0.2) 25%, rgba(247, 127, 0, 0.2) 50%, rgba(6, 167, 125, 0.2) 75%, var(--black) 100%);
    text-align: center;
    padding: 8rem 5%;
}

.grand-opening h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.date-box {
    display: inline-block;
    background: #1f1f1f;
    padding: 3rem 5rem;
    border: 3px solid var(--orange);
    margin: 2rem 0;
}

.date-box p {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    color: var(--white);
}

/* Contact Section */
.contact { background: var(--steel); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-item {
    background: #1f1f1f;
    padding: 2rem;
    border-left: 3px solid;
}

.contact-item:nth-child(1) { border-color: var(--red); }
.contact-item:nth-child(2) { border-color: var(--orange); }
.contact-item:nth-child(3) { border-color: var(--blue); }
.contact-item:nth-child(4) { border-color: var(--green); }

.contact-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-item:nth-child(1) h3 { color: var(--red); }
.contact-item:nth-child(2) h3 { color: var(--orange); }
.contact-item:nth-child(3) h3 { color: var(--blue); }
.contact-item:nth-child(4) h3 { color: var(--green); }

.contact-item p, .contact-item a { color: var(--softer-text); font-size: 1.1rem; text-decoration: none; transition: color 0.3s; }
.contact-item a:hover { color: var(--light-text); }

.contact-form {
    background: #1f1f1f;
    padding: 3rem;
    border-top: 4px solid var(--orange);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--steel);
    border: 1px solid #333;
    color: var(--white);
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--orange); }

.contact-form textarea { min-height: 150px; resize: vertical; }

.contact-form button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(90deg, var(--red), var(--orange));
    border: none;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover { background: linear-gradient(90deg, var(--orange), var(--yellow)); }

/* Footer */
footer {
    background: var(--black);
    padding: 4rem 5% 2rem;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple)) 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--orange);
}

.footer-section p, .footer-section a {
    color: var(--softer-text);
    font-size: 0.95rem;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.footer-section a:hover { color: var(--light-text); }

.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--steel);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--orange);
    transition: all 0.3s;
}

.footer-social a:hover { background: var(--orange); color: var(--black); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--steel);
    color: var(--softer-text);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 968px) {
    nav ul { gap: 1.5rem; font-size: 0.8rem; }
    .about-content, .location-content, .contact-grid, .exhibition-card { grid-template-columns: 1fr; gap: 3rem; }
    .about-features { grid-template-columns: 1fr; }
    section { padding: 5rem 5%; }
    .calendar-grid { gap: 0.25rem; }
    .calendar-day { min-height: 80px; padding: 0.5rem; }
    .day-number { font-size: 0.9rem; }
    .day-event-preview { font-size: 0.65rem; padding: 0.3rem; }
}

@media (max-width: 640px) {
    nav { flex-direction: column; gap: 1rem; padding: 1rem 5%; }
    .logo-container { flex-direction: column; text-align: center; }
    .logo-img { height: 60px; }
    .logo { font-size: 1.2rem; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .social-links { margin-top: 1rem; }
    .calendar-grid { font-size: 0.7rem; }
    .calendar-day { min-height: 60px; padding: 0.25rem; }
    .calendar-day-label { padding: 0.5rem 0.25rem; font-size: 0.75rem; }
    .day-number { font-size: 0.8rem; }
    .day-event-preview { font-size: 0.6rem; padding: 0.2rem; }
    .calendar-legend { flex-direction: column; align-items: center; gap: 0.5rem; }
}
