/* Alexrivera.vegas—neilmclean.com—portfolio code */
/* Picture Player Class */
/* Copyright 2025 Estebagel */

/* General styles for the picture gallery container */
.picture-gallery {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px; /* Consistent spacing between items */
    background-color: #f9f9f9; /* Optional: Add a background color */
}

/* Horizontal layout for desktop */
@media screen and (min-width: 768px) {
    .picture-gallery {
        flex-direction: row;
        height: 100%;
    }

    .picture-container {
        flex: 0 0 auto;
        width: auto; /* Fixed width for desktop */
        height: 100%;
        padding: 10px;
    }

    .picture-wrapper {
        height: 100%; /* Fill the container height */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden; /* Ensure no overflow from images */
    }
}

/* Vertical layout for mobile */
@media screen and (max-width: 767px) {
    .picture-gallery {
        flex-direction: column;
        align-items: center;
        height: auto; /* Allow height to adjust on mobile */
    }

    .picture-container {
        width: 100%; /* Full width on mobile */
        padding: 5px 0; /* Consistent padding with video gallery */
    }

    .picture-wrapper {
        height: auto; /* Allow height to adjust */
    }

    .picture-container img {
        width: 100%; /* Full width on mobile */
        height: auto; /* Maintain aspect ratio */
    }
}

/* Image styling */
.picture-container img {
    width: 100%; /* Fill the container width */
    height: 100% !important; /* Maintain aspect ratio */
    max-width: none; /* Override any max-width restrictions */
    object-fit: contain; /* Ensure the entire image is visible */
}

/* Title and description */
.picture-container h3 {
    font-size: 2em; /* Consistent with video titles */
    font-weight: bold;
    margin: 10px 0 5px 0;
    padding-left: 10px; /* Consistent with video titles */
}

.picture-container p {
    font-size: 1.1em; /* Consistent with video descriptions */
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 15px; /* Consistent with video descriptions */
}

/* Basic Responsiveness */
@media screen and (max-width: 768px) {
    .picture-container h3 {
        font-size: 1.8em; /* Consistent with video titles */
    }

    .picture-container p {
        font-size: 1em; /* Consistent with video descriptions */
    }
}



/* Delete this. */
/**
body {
    background-color: rgb(20, 20, 20) !important;
}

.elementor-142 .elementor-element.elementor-element-50c9202e:not(.elementor-motion-effects-element-type-background), .elementor-142 .elementor-element.elementor-element-50c9202e > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: rgb(20, 20, 20) !important;
}

.picture-container {
    padding: 0px !important;
}

.picture-gallery {
    gap: 20px !important; 
    background-color: rgb(20, 20, 20) !important;
}

a {
    color: rgb(20, 20, 20) !important;
}
    */