/* Home Page Styles */
.hero {
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/uploads/artworks/artwork_48_Qui, dove il tempo fiorisce IV_2025_Acrylic, dried flowers and mixed media on canvas_119.4 x 99.1 cm ; 47_ x 39_ in.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: #000;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 200;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    color: #000;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-black);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Removed artwork carousel - replaced with background image */

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .artwork-carousel {
        height: 300px;
        margin: 0 1rem;
    }
    
    .artwork-overlay {
        padding: 1.5rem;
    }
    
    .artwork-slide .artwork-title {
        font-size: 1rem;
    }
    
    .artwork-slide .artwork-year,
    .artwork-slide .artwork-medium {
        font-size: 0.8rem;
    }
}
