
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #d3d6db;
            overflow-x: hidden;
            background: #333;
        }

        /* Animated background elements */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.02;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, #6366f1, #8b5cf6);
            animation: float 25s ease-in-out infinite;
        }

        .bg-circle:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 20%;
            left: -100px;
            animation-delay: 0s;
        }

        .bg-circle:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: -75px;
            animation-delay: -12s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        /* Hero section */
        .hero {
            padding: 80px 20px 60px;
            text-align: center;
            background-image: url('/myimages/IMG_8307.jpg');
            background-size: cover;
            background-position:70% 45%;
            position: relative;
        }

        .hero h1 {
            font-family: 'Gilroy Bold', sans-serif;
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 1rem;
            color: #1f2937;
            opacity: 0;
            mix-blend-mode:soft-light;
            transform: translateY(10px);
            animation: fadeInUp 1s ease-out forwards;
            margin-bottom: 50px;
        }

        .hero p {
            font-size: 1.1rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(10px);
            animation: fadeInUp 1s ease-out 0.2s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Category cards */
        .categories {
            padding: 40px 10px;
            max-width: 1000px;
            margin: 0 auto;
            background:transparent;
        }

        .category-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .category-card {
            background: white;
            border-radius: 12px;
            padding: 1rem 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .category-card h3,
        .category-card p 
        {color: black;}

        .category-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        }

        .category-card:hover::before {
            left: 100%;
        }

        .category-card.active {
            background: #6366f1;
            color: white;
            transform: translateY(-2px);
        }

        .category-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .category-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .category-count {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Gallery section */
        .gallery-container {
            max-width: 100vw;
            margin: 0 auto;
            padding: 2rem 20px 60px;
        }

        .gallery {
            display: none;
            animation: fadeIn 0.5s ease-out;
        }

        .gallery.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .gallery-title {
            font-size: 2rem;
            font-weight: 300;
            color: white;
            margin-bottom: 0.5rem;
        }

        .gallery-subtitle {
            color: #6b7280;
            font-size: 1rem;
        }

        .close-gallery {
            background: #6366f1;
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            margin-top: 1rem;
            font-size: 0.9rem;
            transition: background 0.3s ease;
        }

        .close-gallery:hover {
            background: #5855eb;
        }

        /* Photo grid - Mobile first */
        .photo-grid {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            align-items: stretch;
        }

        .photo-item {
            background: #e2e8f0;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            font-size: 1rem;
            
        }

        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }



        .photo-emoji {
            font-size: 2rem;
        }

        /* Desktop photo grid */
        @media (min-width: 768px) {
            .hero {
                padding: 120px 20px 80px;
            }

            .hero h1 {
                font-size: 3.5rem;
                /* font-size-adjust: 1; */
            }

            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }

            .category-card {
                padding: 1rem 2.5rem;
            }

            .photo-grid {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 0.25rem;
                align-items: flex-start;
            }

            .photo-item {
                height: auto;
            }

            /* Landscape photos get consistent larger width */
            .photo-item.landscape {
                flex: 2 1 600px;
                min-height:450px;
                aspect-ratio: 3 / 2;
                height:100%;
                object-fit: cover;
            }

            /* Portrait photos get smaller width and constrained height */
            .photo-item.portrait {
                flex: 1 1 250px;
                min-height:450px;
                aspect-ratio: 2 / 3;
                object-fit: cover;
            }


            /* Square photos */
            .photo-item.square {
                width: calc(48% - 0.75rem);
                flex: 0 0 auto;
            }
        }

        @media (min-width: 1024px) {
            .category-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .photo-grid {
                gap: 0.25rem;
            }

            .photo-item.landscape {
                flex: 2 1 600px;
                aspect-ratio: 3 / 2;

            }
            .photo-item.portrait {
                max-width:400px;
            }


            /* Square photos */
            .photo-item.square {
                width: calc(45% - 0.5rem);
            }
        }

        @media (min-width: 1400px) {
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            cursor: pointer;
        }

        .lightbox.active {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            background: #f0f0f0;
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            color: #333;
        }

        .lightbox-close {
            position: relative;
            top: 20px;
            right: 0px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading states */
        .loading {
            opacity: 0.6;
            pointer-events: none;
        }