.photo-gallery-section {
    padding: 60px 0;
    background-color: white; 
}

.photo-gallery-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000; 
    margin-bottom: 20px;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
}


.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    background-color: #B2A67F; 
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    background-color: #a29170;
}
