/* ── GLOBAL ─────────────────────────────────────────────────────── */
body {
    margin: 0;
    padding: 20px 0;
    /* swap this out for whatever background image/color you want */
    background-color: #1a1a1a;
    background-image: url('bg.png');   /* tile a texture here */
    background-repeat: repeat;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 18px;
    color: #ccc;
}

a {
    color: #a78bca;
    text-decoration: none;
}
a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ── WRAPPER (the centered box) ──────────────────────────────────── */
#wrapper {
    width: 760px;
    margin: 0 auto;
    background-color: #111;
    border: 1px solid #333;
}

/* ── HEADER ─────────────────────────────────────────────────────── */
#header {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

#header img {
    width: 100%;
    display: block;
    /* if you don't have a header image yet, this placeholder shows */
    min-height: 80px;
    background: #1e1e1e;
}

/* ── NAVBAR ─────────────────────────────────────────────────────── */
#navbar {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 0;
    display: flex;
}

#navbar a {
    display: inline-block;
    padding: 5px 12px;
    font-size: 16px;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    color: #bbb;
    border-right: 1px solid #333;
}
#navbar a:hover {
    background-color: #2a2a2a;
    color: #fff;
    text-decoration: none;
}

/* ── MARQUEE BAR ─────────────────────────────────────────────────── */
#marquee-bar {
    background-color: #0e0e0e;
    border-bottom: 1px solid #333;
    padding: 3px 6px;
    font-size: 16px;
    color: #666;
}

/* ── THREE-COLUMN CONTENT ───────────────────────────────────────── */
#content {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 8px;
    box-sizing: border-box;
}

#left-col  { width: 180px; flex-shrink: 0; }
#center-col { flex: 1; min-width: 0; padding: 0 8px; }
#right-col { width: 160px; flex-shrink: 0; }

/* ── BOXES ──────────────────────────────────────────────────────── */
.box {
    border: 1px solid #2e2e2e;
    margin-bottom: 8px;
    background: #141414;
}

.box-title {
    background-color: #1e1a2a;
    border-bottom: 1px solid #2e2e2e;
    padding: 3px 7px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a78bca;
}

.box-body {
    padding: 7px;
    line-height: 1.6;
}

.box-body p { margin: 0 0 4px; }

/* ── MISC ELEMENTS ──────────────────────────────────────────────── */
.date {
    color: #555;
    font-size: 15px;
    margin-right: 4px;
}

#button-wall img {
    margin: 2px;
    display: inline-block;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
#footer {
    border-top: 1px solid #2e2e2e;
    background: #0e0e0e;
    text-align: center;
    padding: 6px;
    font-size: 15px;
    color: #444;
}

#footer a { color: #555; }
#footer a:hover { color: #aaa; }

/* ── EVENT BUTTONS ──────────────────────────────────────────────── */
#event-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-btn {
    display: block;
    padding: 10px 14px;
    border: 1px solid #3a2a4a;
    background-color: #1a1424;
    color: #c4a8e0;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
    cursor: pointer;
}

a.event-btn:hover {
    background-color: #2a1a3a;
    border-color: #a78bca;
    color: #fff;
}

.event-btn.coming-soon {
    color: #555;
    border-color: #252525;
    background-color: #131313;
    font-style: italic;
    cursor: default;
}