 *{
            margin:0;
            padding:0;
            box-sizing:border-box;
            font-family:Arial,sans-serif;
        }

        body{
            background:#f1f5f9;
            color:#111827;
        }

        /* HERO */

        .hero{
            width:100%;
            min-height:55vh;
            background:
            linear-gradient(rgba(15,23,42,0.82),rgba(15,23,42,0.82)),
            url('https://images.unsplash.com/photo-1491438590914-bc09fcaaf77a');
            background-size:cover;
            background-position:center;
            display:flex;
            justify-content:center;
            align-items:center;
            text-align:center;
            padding:20px;
        }

        .hero-content{
            max-width:850px;
            color:white;
        }

        .hero-content span{
            display:inline-block;
            background:#2563eb;
            padding:10px 24px;
            border-radius:40px;
            margin-bottom:25px;
            font-size:14px;
            font-weight:600;
        }

        .hero-content h1{
            font-size:62px;
            margin-bottom:20px;
        }

        .hero-content p{
            font-size:18px;
            line-height:1.9;
            color:#e5e7eb;
        }

        /* GALLERY SECTION */

        .gallery-section{
            width:100%;
            padding:100px 20px;
        }

        .container{
            max-width:1400px;
            margin:auto;
        }

        /* TITLE */

        .section-title{
            text-align:center;
            margin-bottom:50px;
        }

        .section-title h2{
            font-size:48px;
            margin-bottom:15px;
        }

        .section-title p{
            max-width:700px;
            margin:auto;
            line-height:1.8;
            color:#555;
        }

        /* FILTER BUTTON */

        .filter-buttons{
            display:flex;
            justify-content:center;
            flex-wrap:wrap;
            gap:15px;
            margin-bottom:60px;
        }

        .filter-btn{
            padding:12px 26px;
            border:none;
            border-radius:50px;
            background:white;
            color:#2563eb;
            cursor:pointer;
            font-size:15px;
            font-weight:600;
            transition:0.3s;
            box-shadow:0 8px 20px rgba(0,0,0,0.08);
        }

        .filter-btn.active,
        .filter-btn:hover{
            background:#2563eb;
            color:white;
        }

        /* MASONRY GALLERY */

        .gallery-grid{
            columns:3 320px;
            column-gap:25px;
        }

        .gallery-item{
            position:relative;
            margin-bottom:25px;
            break-inside:avoid;
            overflow:hidden;
            border-radius:25px;
            cursor:pointer;
            background:white;
            box-shadow:0 10px 30px rgba(0,0,0,0.08);
            transition:0.4s;
        }

        .gallery-item:hover{
            transform:translateY(-8px);
        }

        .gallery-item img{
            width:100%;
            display:block;
            transition:0.5s;
        }

        .gallery-item:hover img{
            transform:scale(1.08);
        }

        /* OVERLAY */

        .gallery-content{
            position:absolute;
            left:0;
            bottom:0;
            width:100%;
            padding:25px;
            background:linear-gradient(transparent,rgba(0,0,0,0.88));
            color:white;
        }

        .gallery-content span{
            display:inline-block;
            background:#2563eb;
            padding:6px 15px;
            border-radius:30px;
            font-size:13px;
            margin-bottom:12px;
        }

        .gallery-content h3{
            font-size:24px;
            margin-bottom:10px;
        }

        .gallery-content p{
            font-size:14px;
            line-height:1.7;
            color:#e5e7eb;
        }

        /* HIDE */

        .hide{
            display:none;
        }

        /* LIGHTBOX */

        .lightbox{
            position:fixed;
            top:0;
            left:0;
            width:100%;
            height:100%;
            background:rgba(0,0,0,0.9);
            display:none;
            justify-content:center;
            align-items:center;
            z-index:999;
            padding:20px;
        }

        .lightbox img{
            max-width:90%;
            max-height:90%;
            border-radius:20px;
        }

        .lightbox.active{
            display:flex;
        }

        /* RESPONSIVE */

        @media(max-width:992px){

            .hero-content h1{
                font-size:46px;
            }

            .section-title h2{
                font-size:40px;
            }
        }

        @media(max-width:768px){

            .gallery-section{
                padding:70px 15px;
            }

            .hero-content h1{
                font-size:34px;
            }

            .hero-content p{
                font-size:15px;
            }

            .section-title h2{
                font-size:30px;
            }

            .gallery-content h3{
                font-size:20px;
            }
        }
