/* Import base styles from main CSS */
@import url('index.css');

/* Gallery-specific styles */
.gallery-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--space-3xl);
    text-align: center;
}

.gallery-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease-out;
}

.gallery-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1.2s ease-out;
}

.gallery-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 1.4s ease-out;
}

/* Gallery Grid */
.gallery-section {
    padding: var(--space-3xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Placeholder Art Pieces with Gradients */
.placeholder-art {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform var(--transition-base);
}

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

.art-1 {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff8c42 100%);
}

.art-2 {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 50%, #ff5e3a 100%);
}

.art-3 {
    background: linear-gradient(135deg, #fa709a 0%, #ff8c42 100%);
}

.art-4 {
    background: linear-gradient(135deg, #ff6b35 0%, #c44569 100%);
}

.art-5 {
    background: linear-gradient(135deg, #ff8c42 0%, #fed6e3 100%);
}

.art-6 {
    background: linear-gradient(135deg, #ff9a9e 0%, #ff6b35 50%, #f7931e 100%);
}

.art-7 {
    background: linear-gradient(135deg, #ff4757 0%, #ff5e3a 100%);
}

.art-8 {
    background: linear-gradient(135deg, #f7931e 0%, #ff6348 100%);
}

.art-9 {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
}

/* Add pattern overlays */
.placeholder-art::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

/* Art Overlay */
.art-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: var(--space-xl);
    transform: translateY(100%);
    transition: transform var(--transition-base);
    z-index: 2;
}

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

.art-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-xs);
}

.art-category {
    font-size: 0.875rem;
    color: var(--color-accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* About Art Section */
.about-art-section {
    padding: var(--space-3xl) 0;
}

.about-art-card {
    padding: var(--space-2xl);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-art-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
}

.about-art-text {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.art-cta {
    margin-top: var(--space-xl);
}

/* Logo link styling */
.logo-link {
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        gap: var(--space-md);
    }

    .placeholder-art {
        min-height: 300px;
    }
}