﻿.gallery-intro, .gallery-intro p {
    margin: 0 auto 1rem auto;
    padding: 0 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 0 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.gallery-image {
    width: 100%;
    max-width: 100%;
    display: block;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    object-fit: cover;
}

    .gallery-image:hover {
        transform: scale(1.03);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }


.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/*Alternative media*/
@media (max-width: 480px) {
    #photo-gallery,
    .gallery-section {
        margin-top: 70px; /* pushes the H1 below the fixed header */
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px; /* uniform thumbnail height */
        gap: 10px;
        padding: 0 12px;
    }

    .gallery-image {
        width: 100%;
        height: 100%; /* fill the grid cell */
        object-fit: cover; /* crop cleanly */
        display: block;
        border-radius: 6px;
    }
}