/* Galleria Page Styles */
.galleria-page {
    padding-top: 80px;
}

/* Hero Section */
.hero-galleria {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/464939088_10234948141833388_555340795505353003_n.jpg') center/cover;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-galleria h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Gallery Filters */
.gallery-filters {
    padding: 30px 0;
    background: var(--white);
}

.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: none;
    background: var(--light-gray);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

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

/* Gallery Grid */
.gallery-grid {
    padding: 60px 0;
    background: var(--light-gray);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    aspect-ratio: 16/9;
    display: block;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.overlay .category {
    display: inline-block;
    padding: 5px 10px;
    background: var(--primary-color);
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.overlay h3 {
    margin: 0;
    font-size: 1.2rem;
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-size: 1.1rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-galleria h1 {
        font-size: 2rem;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
} 