 .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .gallery-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

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

        .item-content {
            padding: 10px;
        }

        .item-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .item-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .item-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #888;
        }

        .category-tag {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .date {
            font-style: italic;
        }

        /* Featured item - spans 2 columns on larger screens */
        .gallery-item.featured {
            grid-column: span 2;
        }

        .gallery-item.featured .item-title {
            font-size: 1.8rem;
        }

        .gallery-item.featured .item-description {
            font-size: 1.1rem;
        }

        /* Masonry-style layout for variety */
        .gallery-item.tall img {
            height: 400px;
        }

        .gallery-item.short img {
            height: 400px;
        }

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

            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }

            .gallery-item.featured {
                grid-column: span 1;
            }

            .gallery-item.featured img {
                height: 250px;
            }

            .gallery-item.featured .item-title {
                font-size: 1.4rem;
            }

            .container {
                padding: 1rem;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .header {
                padding: 1.5rem 1rem;
            }

            .header h1 {
                font-size: 1.8rem;
            }

        }

        /* Loading animation */
        .gallery-item {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .gallery-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .gallery-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .gallery-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .gallery-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .gallery-item:nth-child(5) {
            animation-delay: 0.5s;
        }

        .gallery-item:nth-child(6) {
            animation-delay: 0.6s;
        }

        .gallery-item:nth-child(7) {
            animation-delay: 0.7s;
        }

        .gallery-item:nth-child(8) {
            animation-delay: 0.8s;
        }

        .gallery-item:nth-child(9) {
            animation-delay: 0.9s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Overlay effect for better text readability on hover */
        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(0, 0, 0, 0.7) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 1;
        }


        /* Filter buttons */
        .filter-controls {
            text-align: center;
            margin: 2rem 0;
        }

        .filter-btn {
            background: white;
            border: 2px solid #667eea;
            color: #667eea;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: #667eea;
            color: white;
            transform: translateY(-2px);
        }

        .gallery-item h2 {
            font-size: 19px;
            color: #006eac;
            font-weight: 700;
            margin-top: 15px;
        }

        .gallery-item p {
            font-size: 15px;
            color: #333;
        }

        .ggheader h1 {
            font-size: 30px;
            color: #006eac;
            font-weight: 700;
            margin-top: 40px;
            text-align: center;
            margin-bottom: 0px;
        }

        .ggheader p {
            font-size: 15px;
            text-align: center;
        }
