/* Hero Section */
.services-hero {
    padding: 100px 0;
    background-color: #000;
    color: #fff;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.upcoming-shows.py-5 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
    background: #1a1a1a;
}

/* Two-Column Layout for Shows */
.upcoming-shows .row {
    margin-bottom: 6rem !important; /* Increased space between shows */
    background-color: black; /* Slightly lighter black for contrast against the page background */
    padding: 20px; /* Add padding inside the row for spacing */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    display: flex; /* Ensure flexbox for proper alignment */
    align-items: center; /* Center items vertically within the row */
}

/* Image Container */
.upcoming-shows .image-container {
    transition: all 0.3s ease;
    display: flex; /* Use flexbox to center the image */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100%; /* Ensure it takes the full height of the column */
}

.upcoming-shows .image-container:hover {
    transform: translateY(-5px);
}
.dark-background {
    background-color: #000;
    color: #fff;
}

.explore-bands-btn {
    display: inline-block;
    background-color: white;
    color: black;
    border: 2px solid white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.explore-bands-btn:hover {
    background-color: white;
    transform: translateY(-3px);
}

.upcoming-shows .col-lg-5 img,
.upcoming-shows .col-lg-5 .bg-light {
    width: 100%;
    max-width: 400px !important; /* Restrict maximum width */
    max-height: 550px;
    height: 450px; /* Force consistent height */
    object-fit: contain; /* Show full image without cropping */
    object-position: center; /* Center the image */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* Add shadow back */
    border-radius: 8px; /* Add rounded corners */
    transition: transform 0.3s ease;
}

.upcoming-shows .image-container:hover img {
    transform: scale(1.03);
}

/* Content Styling */
.upcoming-shows .content {
    font-family: "BIZ UDGothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Spread content vertically */
    min-height: 450px; /* Match the image height */
    padding: 0; /* Remove padding since the row now provides it */
}

.upcoming-shows .content p {
    margin-bottom: 0; /* Remove default margin to control spacing manually */
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.upcoming-shows .show-date {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px; /* Add spacing between elements */
}

.upcoming-shows .show-details {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px; /* Add spacing */
}

.upcoming-shows .show-genre,
.upcoming-shows .show-tickets {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 10px; /* Add spacing */
}

.upcoming-shows .disclaimer {
    text-transform: none;
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 5px; /* Reduced margin since Buy Tickets is now at the bottom */
}

/* Buy Tickets Button */
.upcoming-shows .buy-tickets {
    background: #fff;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1.5px;
    padding: 12px 15px;  /* Reduced horizontal padding from 35px to 15px */
    border-radius: 50px;
    border: 2px solid #000;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 180px;  /* Add this line to explicitly set the maximum width */
    text-align: center; /* Ensure text is centered in the button */
}

.upcoming-shows .buy-tickets:hover {
    background: #000;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Placeholder Styling */
.upcoming-shows .bg-light {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #666;
}

/* No Shows Alert */
.alert-info {
    font-size: 1.1rem;
    padding: 1.5rem;
    color: #fff;
    background-color: rgba(0, 123, 255, 0.2);
    border: none;
    border-radius: 10px;
}

.pagination-counter {
    text-align: center;
    margin-top: 15px;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.7;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 20px;
}
.view-more-btn{
    display: inline-block !important;
    padding: 12px 30px;
    background-color: #fff;
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    margin: 80px 0 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;

}



/* Base styles for all pagination elements */
.pagination-arrow,
.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    text-decoration: none;
    transition: all 0.2s;
    color: white;
}

/* Style for page numbers */
.pagination-number {
    background-color: #333;
    border-radius: 5px;
    color: white;
    font-weight: 500;
}

/* Style for active page */
.pagination-number.active {
    background-color: #fff;
    color: black;
    cursor: default;
}

/* Style for arrows */
.pagination-arrow {
    color: white;
    font-size: 18px;
}

/* Style for disabled arrows */
.pagination-arrow.disabled {
    color: #666;
    cursor: default;
    pointer-events: none;
}

/* Hover effects */
.pagination-number:not(.active):hover {
    background-color: #444;
}

.pagination-arrow:not(.disabled):hover {
    color: #ccc;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .upcoming-shows .content p {
        font-size: 0.95rem;
    }

    .upcoming-shows .show-date {
        font-size: 1.1rem;
    }

    .upcoming-shows .buy-tickets {
        font-size: 14px;
        padding: 10px 25px;
        margin: 15px auto;
    }

    .upcoming-shows .row {
        padding: 15px; /* Slightly less padding on smaller screens */
    }

    .upcoming-shows .content {
        min-height: 350px; /* Match the image height on smaller screens */
        text-align: center; /* Center content on tablets */

    }

    .upcoming-shows .col-lg-5 img,
    .upcoming-shows .col-lg-5 .bg-light {
        max-width: 400px; /* Smaller on tablets */

        max-height: 350px;
        height: 350px;
    }
    .upcoming-shows .image-container {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .upcoming-shows .content p {
        font-size: 0.9rem;
    }

    .upcoming-shows .show-date {
        font-size: 1rem;
    }

    .upcoming-shows .buy-tickets {
        font-size: 13px;
        padding: 8px 20px;
        margin: 10px auto;
    }

    .upcoming-shows .content {
        text-align: center; /* Center content on mobile */
    }

    .upcoming-shows .col-lg-5 img,
    .upcoming-shows .col-lg-5 .bg-light {
        max-width: 300px; /* Smaller on mobile */
        max-height: 400px;
        height: 400px;
    }
}

@media (max-width: 576px) {
    .upcoming-shows .content p {
        font-size: 0.9rem;
    }

    .upcoming-shows .show-date {
        font-size: 1rem;
    }

    .upcoming-shows .buy-tickets {
        font-size: 13px;
        padding: 8px 20px;
        text-align: center;
    }
}


