/* Section photos */

#photos{
    display: none;
}

#photos.active {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 2em auto;
    gap: 2em;
    max-width: 1000px;
}

#photos section {
    text-align: center;
}

#photos img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#photos button {
    margin-top: 1em;
    padding: 0.5em 1em;
    background-color: #9f9f9f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#photos button:hover {
    background-color: #555;
}


/* Responsive photos section */
@media screen and (max-width: 768px) {
    #photos {
        flex-direction: column;
        align-items: center;
    }

    #photos section {
        width: 90%;
    }

    #photos img {
        width: 50%;
        height: auto;
    }
}
