/* Base Styles */
:root {
    --dark-bg: #121212;
    --text-color: #f5f5f5;
    --neon-orange: #FF5722;
    --neon-red: #FF1744;
    --neon-blue: #00B0FF;
    --neon-green: #76FF03;
    --white: #FFFFFF;
    --dark-surface: #1E1E1E;
    --dark-surface-lighter: #2D2D2D;
}

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

body {
    font-family: 'Caveat', cursive;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Permanent Marker', cursive;
    font-weight: 400;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

/* Header Styles */
header {
    padding: 2rem 0;
    position: relative;
    z-index: 100;
}

.logo {
    font-size: 3rem;
    text-align: center;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    color: var(--text-color);
    text-shadow: 0 0 10px var(--neon-blue), 
                 0 0 20px var(--neon-blue), 
                 0 0 30px var(--neon-blue);
    animation: neon-pulse 2s infinite alternate;
    font-family: 'Permanent Marker', cursive;
}

@keyframes neon-pulse {
    from {
        text-shadow: 0 0 10px var(--neon-blue), 
                     0 0 20px var(--neon-blue), 
                     0 0 30px var(--neon-blue);
    }
    to {
        text-shadow: 0 0 5px var(--neon-blue), 
                     0 0 10px var(--neon-blue), 
                     0 0 15px var(--neon-blue);
    }
}

/* Hero Section Styles */
.hero {
    padding: 2rem 0 4rem;
    text-align: center;
}

.video-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto 2rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 176, 255, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.artist-statement {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    font-family: 'Indie Flower', cursive;
}

.collection-info {
    font-size: 1.2rem;
    color: var(--neon-orange);
    font-weight: 500;
    margin-top: 1rem;
    font-family: 'Caveat', cursive;
    letter-spacing: 1px;
}

/* Gallery Styles */
.gallery {
    padding: 4rem 0;
    background-color: var(--dark-surface);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--neon-red);
}

.filters {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.art-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background-color: var(--dark-surface-lighter);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.art-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 23, 68, 0.4);
}

.art-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.art-item.loading {
    animation: loading-pulse 1.5s infinite alternate;
}

@keyframes loading-pulse {
    from {
        background-color: var(--dark-surface-lighter);
    }
    to {
        background-color: #3D3D3D;
    }
}

/* About Section Styles */
.about {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.about h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--neon-green);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Footer Styles */
footer {
    padding: 3rem 0;
    background-color: var(--dark-surface);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: var(--dark-surface-lighter);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 0 10px var(--neon-blue);
}

.copyright {
    font-size: 0.9rem;
    color: #999;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow: hidden;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    border: 2px solid var(--dark-surface-lighter);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    padding: 1rem 0;
    font-size: 1.2rem;
}

.lightbox-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.lightbox-controls button {
    background-color: var(--dark-surface-lighter);
    color: var(--text-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-controls button:hover {
    background-color: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 0 10px var(--neon-blue);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .artist-statement {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    .artist-statement {
        font-size: 1.2rem;
    }
    
    .collection-info {
        font-size: 1rem;
    }
    
    .lightbox-controls {
        flex-wrap: wrap;
    }
}
