       /* Gallery Section */
        #gallery .container {
            width: 100%;
            max-width: 1200px;
        }
        .gallery-filters {
            margin-bottom: 2rem;
            text-align: center;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .gallery-filter-btn {
            background-color: transparent;
            color: var(--text-color);
            padding: 0.5rem 1.5rem;
            border: 2px solid var(--glass-border);
            border-radius: 999px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .gallery-filter-btn:hover, .gallery-filter-btn.active {
            background-color: var(--primary-accent-color);
            color: var(--bg-color);
            border-color: var(--primary-accent-color);
        }
        .gallery-grid {
            column-count: 3;
            column-gap: 1rem;
        }
        @media (max-width: 1024px) { .gallery-grid { column-count: 2; } }
        @media (max-width: 768px) { .gallery-grid { column-count: 1; } }

        .gallery-item {
            margin-bottom: 1rem;
            break-inside: avoid;
            position: relative;
            overflow: hidden;
            border-radius: 0.5rem;
            border: 1px solid var(--glass-border);
        }
        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.4s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .gallery-item .overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            cursor: pointer;
        }
        .gallery-item:hover .overlay { opacity: 1; }
