/*
 Theme Name:   MagSoul Child
 Theme URI:    https://yourwebsite.com
 Description:  A child theme for the MagSoul theme
 Author:       Your Name
 Author URI:   https://yourwebsite.com
 Template:     magsoul
 Version:      1.0.0
*/

/* Add custom CSS below this line */
/* Custom CSS for the image gallery at the top of the homepage */

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery-item {
    width: 22%; /* Adjust width for the size of each image */
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover {
    transform: scale(1.1); /* Zoom effect on hover */
}

@media (max-width: 768px) {
    .gallery-item {
        width: 45%; /* Adjust width for smaller screens */
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 100%; /* Full width on very small screens */
    }
}

#find-a-show {
    margin: 20px 0;
}
#find-a-show input, #find-a-show select, #find-a-show button {
    margin: 5px 0;
    padding: 10px;
    width: 100%;
    max-width: 300px;
}
.show-results {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.show-item {
    border: 1px solid #ccc;
    padding: 10px;
    width: calc(33.33% - 20px);
    box-sizing: border-box;
}

/* custom style for jet_dates
 */
.jetengine-metabox {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 5px;
}
.jetengine-metabox h3 {
    font-size: 18px;
    margin-bottom: 15px;
}
