body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: Arial, sans-serif;
}

.page-container {
    position: relative;
    width: 940px;
    margin: 0 auto;
}

/* Backgrounds */
.wood-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 940px;
    z-index: 0;
}

.timeline-bg {
    position: relative;
    width: 940px;
    display: block;
    z-index: 1;
}

/* Shows text box */
.shows-box {
    position: absolute;
    top: 140px;
    left: 0;
    width: 940px;
    padding-left: 375px; /* ← text offset position */
    line-height: 1.6;
    font-size: 14px;
    z-index: 5;
    text-align: left;
}

/* Dates and venues */
.show-date {
    color: red;
    font-weight: bold;
    text-decoration: none;
    display: inline-block; /* ← fixed so only text is clickable */
    margin-bottom: 2px;
}

.show-venue {
    color: black;
    font-weight: bold;
    text-decoration: none;
    display: inline-block; /* ← same fix here */
    margin-bottom: 12px;
}

/* Dynamic content background */
.content-extension {
    position: absolute;
    left: 0;
    width: 940px;
    display: none;
    overflow: hidden;
    z-index: 1;
}

.gear-link {
    position: absolute;
    top: 100px; /* matches the shows-box top */
    left: 175px; /* adjust horizontally until it sits exactly where you want */
    font-size: 16px;
    font-weight: bold;
    color: black;
    text-decoration: none;
    z-index: 6; /* above the background and shows list */
}


.last-updated {
    position: absolute;
    top: 330px;      /* adjust vertically under GEAR */
    left: 175px;     /* same horizontal alignment as GEAR */
    font-size: 12px; /* smaller than GEAR link */
    font-weight: normal;
    color: black;
    z-index: 6;      /* ensures it sits above backgrounds */
}

.content-back {
    width: 940px;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    position: absolute;
    left: 0;
    width: 940px;
    height: 23px;
    z-index: 2;
}
