*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#f8fafc;
}

/* Hero */

.page-hero {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient(135deg, var(--dark-color), #334155);*/
    background: url('images/gallery.png') center/cover no-repeat;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.visit-cta {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.visit-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.visit-cta h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.visit-cta p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.visit-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

    .visit-btn:hover {
        background: #1e40af;
        transform: translateY(-2px);
    }
       
.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
}

.hero-content h1{
    font-size:48px;
    margin-bottom:10px;
}

.hero-content p{
    font-size:18px;
}

/* Gallery */

.gallery-section{
    padding:70px 5%;
}

.gallery-filters{
    text-align:center;
    margin-bottom:40px;
}

.filter-btn{
    border:none;
    padding:12px 24px;
    margin:5px;
    cursor:pointer;
    border-radius:30px;
    background:#e2e8f0;
    transition:.3s;
    font-size:15px;
}

.filter-btn:hover,
.filter-btn.active{
    background:var(--primary-color);
    color:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.gallery-item:hover{
    transform:translateY(-8px);
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* Lightbox */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

.close-btn{
    position:absolute;
    top:30px;
    right:40px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}

.show{
    display:flex;
}

/* Responsive */

@media(max-width:768px){

    .page-hero{
        height:250px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .gallery-item img{
        height:250px;
    }

    .filter-btn{
        padding:10px 18px;
        font-size:14px;
    }
}