/* Reset and base */
*, *::before, *::after {
    box-sizing: border-box;
}
html, body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-image: url('/media-content/tour-media/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 20%;
}
a {
    color: inherit; 
    text-decoration: none;
}
a:focus-visible {
    outline: 2px solid #c1aaff; 
    outline-offset: 2px;
}
h2 {
    font-weight: 700; 
    margin: 0 0 1rem; 
    text-align: center; 
    text-transform: uppercase; 
    letter-spacing: 0.05em;
}
strong {
    font-weight: 700;
}
/* Container */
.container {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 1rem;
}
/* Main sections */
main {
    padding-top: 80px;
}
section {
    padding: 4rem 1rem 3rem;
}
/* Upcoming Shows Section */
.upcoming-shows {
    background: rgba(0,0,0,0.75);
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2rem 2rem 3rem;
    border-radius: 4px;
}
.upcoming-shows h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}
.shows-list {
    list-style: none;
    margin: 0; 
    padding: 0;
}
.show-item {
    display: grid;
    grid-template-columns: 140px 1fr 180px auto;
    gap: 1rem 1.5rem;
    align-items: center;
    border-bottom: 1px solid rgba(255 255 255 / 0.15);
    padding: 1rem 0;
}
.show-item:last-child {
    border-bottom: none;
}
.show-date {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.show-venue {
    font-weight: 500;
    font-size: 0.9rem;
}
.show-location {
    font-size: 0.9rem;
    color: #ccc;
}
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border: 1.5px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 2px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}
.btn:hover,
.btn:focus-visible {
    background-color: #c1aaff;
    border-color: #c1aaff;
    color: #000;
    outline: none;
}
.btn.vip {
    margin-right: 0.5rem;
}
/* Powered by seated */
.powered-by {
    text-align: right;
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 0.5rem;
    font-family: Arial, sans-serif;
}
.powered-by a {
    color: #fff;
    font-weight: 700;
}
.powered-by a:hover,
.powered-by a:focus-visible {
    color: #c1aaff;
    outline: none;
}
/* Past Shows Section */
.past-shows {
    background: #222;
    color: #c94a4a;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2rem 2rem 3rem;
    border-radius: 4px;
}
.past-shows h2 {
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid #c94a4a;
    padding-bottom: 0.5rem;
}
details {
    border-top: 1px solid #c94a4a;
    padding: 0.75rem 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    color: #c94a4a;
}
details summary {
    list-style: none;
    outline: none;
}
details[open] summary::after {
    content: "▲";
    float: right;
}
details summary::after {
    content: "▼";
    float: right;
}
details p {
    margin: 0.5rem 0 0 1rem;
    font-weight: 400;
    color: #eee;
    white-space: pre-wrap;
}
.btn.disabled {
    pointer-events: none;
    opacity: 0.4;
    cursor: default;
    border-color: #888;
    color: #aaa;
    background: none;
}
.bandsintown-btn {
    display: inline-block;
    background-color: #1DB954;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .bandsintown-btn:hover,
  .bandsintown-btn:focus {
    background-color: #169c45;
    transform: translateY(-2px);
  }

/* Responsive */
@media (max-width: 1010px) {
    main {
        padding-top: 1rem;
    }
    .upcoming-shows {
        background: rgba(0,0,0,0.75);
        max-width: 900px;
        margin: 0 auto 0;
        padding: 2rem 4rem 4rem;
        border-radius: 4px;
    }
    .show-item {
        grid-template-columns: 1fr;
        gap: 0.25rem 0;
        text-align: center;
    }
    .show-location {
        margin-bottom: 0.5rem;
    }
    .btn.vip {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    .btn {
        width: 100%;
    }
}