.hero {
    background: url('../img/gallery1.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 360px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

@media (max-width: 568px) {
    .hero {
        padding: 100px 50px;
    }
}

.gallery-section {
    padding: 50px;
    background: #f8f8f8;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}