/* Photo Gallery Styles */
#photo-gallery {
    padding: 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.gallery-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.gallery-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide {
    flex: 0 0 100%;
    width: 100%;
}

.gallery-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    user-drag: none;
    -webkit-user-drag: none;
}

.gallery-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.nav-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 600px) {
    .gallery-image {
        height: 300px;
    }
    
    .nav-btn {
        padding: 10px;
        width: 30px;
        height: 30px;
    }
}
