/* drumnbass.at — Archiv | Laura Design System */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: #0a0a0f;
    color: #e2e6ed;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    line-height: 1.6;
    font-size: 0.82rem;
    -webkit-font-smoothing: antialiased;
}

header {
    background: #12131a;
    border-bottom: 1px solid #1e2233;
    padding: 1rem 2rem;
}
.header-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.site-title {
    color: #CC9900;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 0.15s;
}
.site-title:hover { color: #e6b800; }
.site-subtitle {
    color: #636d83;
    font-size: 0.72rem;
    font-style: italic;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

h2 {
    color: #CC9900;
    font-size: 0.88rem;
    margin: 1.5rem 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h3 {
    color: #e6b800;
    font-size: 0.82rem;
    margin: 1rem 0 0.3rem;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto 1.5rem;
    border-radius: 6px;
    border: 1px solid #1e2233;
}

.info-box {
    background: #12131a;
    border: 1px solid #1e2233;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
}
.info-box p { margin-bottom: 0.5rem; }

.accent { color: #CC9900; }
.muted { color: #636d83; }

a {
    color: #CC9900;
    text-decoration: none;
    transition: color 0.15s;
}
a:hover {
    color: #e6b800;
    text-decoration: underline;
}

.section-divider {
    border: none;
    border-top: 1px solid #1e2233;
    margin: 1.5rem 0;
}

.meta {
    color: #636d83;
    font-size: 0.72rem;
    margin-top: 0.5rem;
}

/* Event cards */
.event-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 0.8rem 0;
}
.event-card {
    background: #12131a;
    border: 1px solid #1e2233;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    transition: border-color 0.2s;
}
.event-card:hover { border-color: #CC9900; }
.event-date {
    color: #CC9900;
    font-size: 0.72rem;
    font-weight: bold;
}
.event-name {
    color: #e2e6ed;
    font-size: 0.82rem;
    font-weight: bold;
    margin: 0.15rem 0;
}
.event-venue {
    color: #636d83;
    font-size: 0.72rem;
}
.event-lineup {
    color: #b0b8c8;
    font-size: 0.75rem;
    margin-top: 0.3rem;
    line-height: 1.5;
}
.event-lineup .international {
    color: #e6b800;
    font-weight: bold;
}

/* Crew cards */
.crew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.8rem;
    margin: 0.8rem 0;
}
.crew-card {
    background: #12131a;
    border: 1px solid #1e2233;
    border-radius: 6px;
    padding: 0.8rem 1rem;
}
.crew-name {
    color: #CC9900;
    font-weight: bold;
    font-size: 0.82rem;
    margin-bottom: 0.3rem;
}
.crew-desc {
    font-size: 0.75rem;
    color: #b0b8c8;
    line-height: 1.5;
}
.crew-members {
    font-size: 0.72rem;
    color: #636d83;
    margin-top: 0.3rem;
}

/* Club cards */
.club-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.6rem;
    margin: 0.8rem 0;
}
.club-card {
    background: #12131a;
    border: 1px solid #1e2233;
    border-radius: 6px;
    padding: 0.6rem 0.8rem;
}
.club-name {
    color: #CC9900;
    font-weight: bold;
    font-size: 0.78rem;
}
.club-loc {
    color: #636d83;
    font-size: 0.72rem;
}

/* Navigation chips */
.nav-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.8rem 0;
}
.nav-chip {
    display: inline-block;
    background: #1a1b26;
    border: 1px solid #1e2233;
    border-radius: 4px;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    color: #e2e6ed;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.nav-chip:hover {
    border-color: #CC9900;
    background: #171825;
    text-decoration: none;
}

/* Links list */
.link-list {
    list-style: none;
    columns: 2;
    column-gap: 2rem;
    margin: 0.5rem 0;
}
.link-list li {
    padding: 0.2rem 0;
    font-size: 0.75rem;
    break-inside: avoid;
}

/* Collapsible sections */
details {
    margin: 0.5rem 0;
}
details summary {
    cursor: pointer;
    color: #CC9900;
    font-size: 0.82rem;
    font-weight: bold;
    padding: 0.3rem 0;
}
details summary:hover {
    color: #e6b800;
}

/* RIP box */
.rip-box {
    background: #1a0000;
    border: 1px solid #330000;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
    color: #ff4444;
    text-align: center;
}
.rip-box .rip-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

footer {
    background: #12131a;
    border-top: 1px solid #1e2233;
    padding: 1rem 2rem;
    text-align: center;
    color: #636d83;
    font-size: 0.68rem;
    margin-top: 2rem;
}
footer a { color: #CC9900; }

@media (max-width: 600px) {
    main { padding: 1rem; }
    header { padding: 0.8rem 1rem; }
    .crew-grid { grid-template-columns: 1fr; }
    .club-grid { grid-template-columns: 1fr; }
    .link-list { columns: 1; }
}
