.full-gallery {
    padding: 100px 20px 80px;
    margin-top: 60px;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.page-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 8px 20px;
    background: #ecf0f1;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #3498db;
    color: white;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item-large {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.gallery-item-large img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1.3rem;
}

.gallery-info p {
    color: #7f8c8d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.gallery-category {
    display: inline-block;
    background: #e8f4fc;
    color: #3498db;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-right: 10px;
    margin-bottom: 10px;
}

.gallery-info small {
    color: #95a5a6;
    font-size: 0.9rem;
}

.no-images {
    text-align: center;
    grid-column: 1 / -1;
    padding: 3rem;
    color: #7f8c8d;
}

.no-images i {
    font-size: 4rem;
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.no-images h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .page-title {
        font-size: 2rem;
    }
}