    /* Gallery */
.gallery-grid figure {
    cursor: pointer;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.lightbox-img {
    max-width: 80%;
    max-height: 70vh;
    border-radius: 10px;
}

.lightbox-caption {
    color: #fff;
    margin-top: 20px;
    font-size: 1.2rem;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}


        /* ======= HEADER WITH FIXED BACKGROUND ======= */
     header {
            position: relative;
            background: url('015.jpg') center/cover no-repeat fixed;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }
        header::before {
            content: "";
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.12);
        }
        header h1, header p {
            position: relative;
            z-index: 1;
            margin: 0;
        }
        header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }