#poesiealbum{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    background-color: white;
}

#poesiealbum-title{
    margin-left: 7%;
    text-align: left !important;
    align-self: flex-start;
}

#gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.gallery-image-outer {
    position: relative; /* Ensure it can contain the fullscreen image */
}




.gallery-image:hover{
    filter: brightness(0.8);
}

.gallery-fullscreen {
    opacity: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    border-radius: 0; /* Remove border radius for fullscreen view */
    transition: 0.5s ease-in-out;
    object-fit: contain;
}

.gallery-image.blur {
    filter: blur(5px);
}

.gallery-fullscreen:hover{
    filter: none;
}

@media (max-width: 768px){
    #gallery{
        width: 90vw;
    }
    .gallery-image{
        width: 40vw;
        height: 40vw;
        object-fit: cover;
        border-radius: 10px;
        transition: 0.5s ease-in-out;
    }

    #poesiealbum-videos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin: 20px 0;
        width: 90vw;
        height: 100%;
    }
    .poesiealbum-video iframe{
        width: 90vw;
        height: calc(90vw * 0.5625); /* 16:9 aspect ratio */
        border: none;
    }
    #poesiealbum-main-image{
        width: 90vw;
        height: 35vw;
        overflow: hidden;
    }
    
    #poesiealbum-main-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 20%; /* Center horizontally, 80% from the top */
        cursor: pointer;
        transition: 0.5s ease-in-out;
        
    }
}
@media (min-width: 768px){
    #gallery{
        width: 60%;
    }
    .gallery-image{
        width: 29vw;
        height: 300px;
        object-fit: cover;
        border-radius: 10px;
        cursor: pointer;
        transition: 0.5s ease-in-out;
    }
    #poesiealbum-videos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin: 30px 0;
        width: 60%;
        height: 100%;
    }
    .poesiealbum-video iframe{
        width: 29vw;
        height: 20vw;
        border: none;
    }
    #poesiealbum-main-image{
        width: 60%;
        height: 20vw;
        overflow: hidden;
    }
    
    #poesiealbum-main-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 20%; /* Center horizontally, 80% from the top */
        cursor: pointer;
        transition: 0.5s ease-in-out;
        
    }
}


