/**
* Theme Name: Zeen Child
* Description: Zeen child theme.
* Author: Codetipi
* Template: zeen
* Version: 1.0.0
*/


.festival-background {background-position:top}

.wp-block-post-list-posts ul, .wp-block-post-list-posts li, .wp-block-post-list-posts {list-style:none; display:block}
.wp-block-post-list-posts ul li {list-style:none; display:block}

/* General Review Box Styling */
.lr-album-review {
    background: #f7f7f7; /* Light gray background to make it pop */
    padding: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 10px; /* Slightly more rounded corners */
    margin: 20px auto;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08); /* Softer shadow */
    text-align: left;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Title and Score Row Styling */
.lr-review-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.lr-review-title {
    font-size: 24px; /* Make the title stand out more */
    font-weight: bold;
    color: #333333;
}

.lr-review-score {
    font-size: 1.5em;
    font-weight: bold;
    color: #333; /* A red color to make the score more visually distinct */
    padding: 5px 10px;
    border-radius: 5px; /* Put the score in a badge */
}

/* Album Cover Image Styling */
.lr-review-image {
    text-align: center;
    margin: 0 30px 20px 0; /* Increased right margin for better spacing */
    flex-shrink: 0;
}

.lr-review-image img.lr-album-cover {
    max-width: 200px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Review Content Fields Styling */
.lr-review-content {
    max-width: calc(100% - 250px); /* Adjust for better spacing next to the image */
    display: flex;
    flex-wrap: wrap;
}

.lr-review-field {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666666;
    flex-basis: calc(50% - 15px);
    margin-right: 15px;
}

.lr-review-field strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #999999; /* Make labels lighter to emphasize values */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .lr-album-review {
        flex-direction: column;
        text-align: center;
    }

    .lr-review-header {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .lr-review-image {
        margin: 0 auto 20px;
    }

    .lr-review-content {
        max-width: 100%;
        flex-direction: column;
    }

    .lr-review-field {
        flex-basis: 100%;
        margin-right: 0;
    }
}

/* Base Styling for Setlist Container */
.band-setlist {
    margin: 0.8em 0; /* Reduced margin for compact layout */
    padding: 1em; /* Reduced padding for tighter spacing */
    background-color: #ffffff; /* White background for clean contrast */
    border-left: 2px solid #ffcc00; /* Thinner highlight border */
    border-radius: 5px; /* Smaller rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Lighter shadow for subtle depth */
    max-width: 100%;
    box-sizing: border-box;
}

/* Heading Styling for Setlist Container */
.setlist-title {
    font-size: 1.1em; /* Reduced size for better alignment with compact styling */
    margin-bottom: 0.3em; /* Reduced bottom margin to save space */
    font-weight: 600; /* Balanced weight for readability */
    color: #333; /* Darker color for better readability */
}

/* Styling for Setlist Container */
.setlist-container {
    margin-top: 0.8em; /* Reduced margin to minimize gaps */
    padding-left: 1em; /* Proper padding for ordered lists */
}

/* Styling for Regular Sets and Encores */
.setlist-regular, .setlist-encore {
    margin-bottom: 0.8em; /* Reduced space between sets and encores */
}

/* Styling for Regular and Encore Headers */
.setlist-heading {
    font-size: 1.00em; /* Moderate size to emphasize, but smaller for conciseness */
    margin-bottom: 0.3em; /* Reduced margin for compactness */
    font-weight: 500;
    color: #444; /* Softer gray to maintain visual hierarchy */
}

/* List Styling for Songs */
.setlist-ol {
    list-style-type: decimal;
    padding-left: 1em; /* Reduced padding for compactness */
    margin: 0;
}

.setlist-li {
    margin: 0.2em 0; /* Tighter spacing between items */
    font-size: 0.8em; /* Slightly smaller for readability */
    line-height: 1.3; /* Reduced line spacing for compactness */
    color: #555; /* Softer color for readability */
}

/* No Setlist Found Message Styling */
.no-setlist-found {
    margin: 1em 0;
    padding: 0.8em;
    background-color: #fff3f3; /* Light red with transparency for less intensity */
    border-left: 2px solid #ff4d4d; /* Thinner border for attention without overwhelming */
    border-radius: 5px;
    color: #444;
    font-style: italic;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .band-setlist {
        padding: 0.8em;
        margin: 0.8em 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); /* Softer shadow for smaller screens */
    }

    .setlist-title {
        font-size: 1.1em; /* Smaller for smaller screens */
    }

    .setlist-heading {
        font-size: 1em; /* Adjusted to fit smaller screens */
    }

    .setlist-li {
        font-size: 0.85em; /* Slightly smaller for better fit */
    }
}

@media (max-width: 480px) {
    .band-setlist {
        padding: 0.6em;
        margin: 0.6em 0;
    }

    .setlist-title {
        font-size: 1em; /* Adjusted for very small screens */
    }

    .setlist-heading {
        font-size: 0.95em;
    }

    .setlist-li {
        font-size: 0.8em;
    }
}

/* Link Styling */
.band-setlist a {
    color: #0073e6; /* Consistent link color for theme */
    text-decoration: none;
    transition: color 0.3s ease;
}

.band-setlist a:hover {
    color: #005bb5; /* Slightly darker blue on hover */
}

/* Accent and Supporting Styling */
.band-setlist p {
    font-size: 0.9em; /* Slightly smaller to save space */
    color: #666; /* Softer gray for general paragraph text */
}

/* Better Visual Hierarchy for Venue Information */
.band-setlist p strong {
    color: #ffcc00; /* Highlight color for the word "Venue" */
}


figure.wp-block-gallery.has-nested-images {
    align-items: normal;
    padding: 10px 0 !important;
}	
