/* assets/css/art.css */
/* ART */
.art-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/art-banner.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 30px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 30px;
    background-color: var(--light-bg);
    color: var(--dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

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

.art-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.art-item:hover {
    transform: translateY(-5px);
}

.art-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.art-info {
    padding: 15px;
}

.art-info h3 {
    margin-bottom: 5px;
}

.artist, .medium {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 3px;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.artist-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.artist-info {
    padding: 15px;
    text-align: center;
}

.events-list {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.event-card {
    display: flex;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.event-date {
    flex: 0 0 80px;
    background-color: var(--primary);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.month {
    font-size: 1rem;
    text-transform: uppercase;
}

.event-info {
    flex: 1;
    padding: 20px;
}

.event-info h3 {
    margin-bottom: 5px;
}

.location {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

@media (max-width: 768px) {
    .gallery-grid, .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        flex-direction: row;
        justify-content: space-around;
        padding: 10px 0;
    }
}