/* CSS Variables */
:root {
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #242424;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --accent: #4ecdc4;
    --accent-hover: #3db8b0;
    --gold: #d4af37;
    --turquoise: #40e0d0;
    --warm: #e8d5b7;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-blue {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--turquoise);
}

.logo-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--turquoise);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 40px 80px;
    background: linear-gradient(135deg,
        rgba(15, 15, 15, 1) 0%,
        rgba(30, 50, 50, 0.8) 50%,
        rgba(15, 15, 15, 1) 100%
    );
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--turquoise), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 12px;
}

.hero-location {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid var(--turquoise);
    color: var(--turquoise);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: var(--turquoise);
    color: var(--bg-primary);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--turquoise), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-secondary);
    border-radius: 4px;
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: 1/2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px dashed var(--border);
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    padding: 20px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* About Section */
.about-section {
    padding: 100px 40px;
    background: var(--bg-secondary);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.about-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--border);
    color: var(--text-secondary);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--turquoise);
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 3px solid var(--turquoise);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-award {
    margin-top: 40px;
    padding: 24px;
    background: var(--bg-primary);
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.award-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.about-award span:nth-child(2) {
    font-weight: 600;
    font-size: 1.1rem;
}

.award-sub {
    width: 100%;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 36px;
}

/* Series Section */
.series-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.series-card {
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.series-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.series-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.series-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.series-placeholder.turquoise {
    background: linear-gradient(135deg, #1a3a3a, #2d5a5a);
    color: var(--turquoise);
}

.series-placeholder.lakeshore {
    background: linear-gradient(135deg, #2a3020, #4a5040);
    color: #8fbc8f;
}

.series-placeholder.whimsical {
    background: linear-gradient(135deg, #3a2a3a, #5a4a5a);
    color: #dda0dd;
}

.series-placeholder.doodles {
    background: linear-gradient(135deg, #3a3020, #5a5040);
    color: var(--warm);
}

.series-info {
    padding: 24px;
}

.series-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.series-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Art Crawl Section */
.crawl-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(212, 175, 55, 0.1));
    text-align: center;
}

.crawl-content {
    max-width: 700px;
    margin: 0 auto;
}

.crawl-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--turquoise);
    color: var(--bg-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.crawl-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.crawl-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Visit Section */
.visit-section {
    padding: 100px 40px;
    background: var(--bg-secondary);
}

.visit-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.visit-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.visit-item h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--turquoise);
    margin-bottom: 12px;
}

.visit-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 12px 20px;
    background: var(--bg-primary);
    border-radius: 4px;
    color: var(--text-primary);
    transition: background 0.3s ease;
}

.social-link:hover {
    background: var(--bg-tertiary);
}

.visit-map {
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
    background: var(--bg-tertiary);
}

/* Footer */
.footer {
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 20px;
}

.lightbox-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.lightbox-caption p {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .visit-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .gallery-section,
    .series-section,
    .about-section,
    .visit-section {
        padding: 60px 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 1;
    }

    .crawl-section {
        padding: 60px 24px;
    }

    .visit-map {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .series-grid {
        grid-template-columns: 1fr;
    }

    .about-quote {
        font-size: 1.2rem;
    }
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}
