/* =========================
   LIVE MUSIC PAGE HEADER
   Top section of the live music page.
   ========================= */

   .music-header {
    background: #17102f;
    color: white;

    text-align: center;

    padding: 80px 20px;
}

.music-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.music-header p {
    font-size: 22px;
}

/* =========================
   UPCOMING LIVE MUSIC CARDS
   Dynamic event cards filled by music.js.
   ========================= */

.upcoming-music {
    padding: 80px 8%;

    background:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.45)
        ),
        url("../images/sunset.jpg");

    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;

    text-align: center;
}

.upcoming-music h2 {
    color: white;

    font-size: 42px;

    margin-bottom: 40px;

    text-shadow: 0 3px 10px rgba(0,0,0,.5);
}

/* Container holding all event cards */
.music-events {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 25px;
}

/* Individual event card */
.music-card {
    width: 80%;
    max-width: 1000px;
    min-height: 180px;

    background: rgba(23,16,47,.9);
    color: white;

    border: 2px solid #c89b3c;
    border-radius: 20px;

    padding: 25px;

    box-shadow: 0 10px 25px rgba(0,0,0,.35);

    transition: all .3s ease;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.music-card:hover {
    transform: translateY(-5px);

    border-color: #ffd700;

    box-shadow: 0 15px 35px rgba(255,215,0,.2);
}

/* Band name */
.music-card h3 {
    color: white;

    font-size: 36px;

    margin-bottom: 15px;

    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Event date and time */
.music-card p {
    color: rgba(255,255,255,.9);
    font-size: 18px;
}

/* Event description pulled from Google Calendar */
.music-description {
    margin-top: 15px;

    font-size: 16px;
    line-height: 1.6;

    font-style: italic;
    opacity: 0.85;
}