/* Gradient background and organic styling */
body {
    background: linear-gradient(135deg, #121212 0%, #0a1a2a 50%, #121212 100%);
    font-family: 'Caveat', cursive;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Vintage wallpaper background for the bottom of the page */
body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/wallpaper-background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

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

/* Organic positioning for the logo */
.logo-image {
    max-width: 300px;
    height: auto;
    margin: 2rem auto;
    filter: drop-shadow(0 0 10px var(--neon-blue)) 
            drop-shadow(0 0 20px var(--neon-blue));
    animation: logo-pulse 2s infinite alternate;
    transform: rotate(-5deg);
}

/* Handwritten annotation style */
.annotation {
    font-family: 'Indie Flower', cursive;
    color: var(--neon-orange);
    position: absolute;
    transform: rotate(-10deg);
    font-size: 1.5rem;
    z-index: 10;
}

.arrow {
    position: absolute;
    width: 60px;
    height: 30px;
    z-index: 10;
}

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

/* Gallery grid with more organic layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}

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

.art-item:nth-child(odd) {
    --random-rotate: 2deg;
}

.art-item:nth-child(even) {
    --random-rotate: -2deg;
}

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

/* Artist statement with more organic styling */
.artist-statement {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    font-family: 'Indie Flower', cursive;
    transform: rotate(-1deg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-image {
        max-width: 220px;
    }
    
    .video-container {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
    
    .artist-statement {
        font-size: 1.8rem;
    }
    
    .collection-info {
        font-size: 1.2rem;
    }
}
