/* css/pages.css */
/* --- ABOUT PAGE --- */
.info-box { background-color: #110e0c; border: 1px solid #333; border-radius: 12px; }
.roots-box { padding: 30px; margin-bottom: 20px; box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02); }
.box-half { flex: 1; min-width: 300px; padding: 25px; }
.box-label { color: var(--theme-primary); font-family: monospace; font-size: 11px; letter-spacing: 2px; margin-bottom: 10px; }
.box-label.dashed { border-bottom: 1px dashed #333; padding-bottom: 8px; margin-bottom: 15px; }
.box-title { font-size: 18px; font-weight: 700; color: #e8e8e8; margin-bottom: 15px; }
.box-text { color: #bbb; line-height: 1.6; font-size: 14px; margin-top: 0; margin-bottom: 15px; }
.box-text.small { font-size: 13px; }
.box-text.no-margin { margin-bottom: 0; }

.rec-list { list-style: none; padding: 0; margin: 0; font-size: 13px; line-height: 2.5; }
.rec-link { color: #e8e8e8; text-decoration: none; font-weight: 700; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.rec-link:hover { border-color: var(--theme-primary); }
.rec-desc { color: #666; font-size: 11px; font-family: monospace; margin-left: 10px; }

.heritage-container { display: flex; align-items: center; justify-content: center; gap: 30px; height: 110px; }
.heritage-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.heritage-logo { max-height: 80px; width: auto; opacity: 0.7; transition: opacity 0.3s; filter: drop-shadow(0 0 5px rgba(0,0,0,0.5)); }
.heritage-logo:hover { opacity: 1; }
.heritage-logo.large { max-height: 90px; }
.heritage-label { font-family: monospace; font-size: 10px; color: #444; letter-spacing: 1px; }
.heritage-divider { width: 1px; height: 60px; background: #222; }

/* --- HOME NEWS FEED --- */
#news-feed-container { display: flex; flex-direction: column; gap: 20px; }
.news-post { display: flex; gap: 20px; background-color: #110e0c; border: 1px solid #333; padding: 20px; border-radius: 10px; transition: border-color 0.2s; }
.news-post:hover { border-color: rgba(var(--theme-accent-rgb), 0.4); }
.news-avatar { width: 76px; height: 76px; border-radius: 8px; border: 2px solid var(--theme-primary); background-color: #111; object-fit: cover; flex-shrink: 0; }
.news-content { display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.news-title { font-size: 16px; font-weight: 700; color: #e8e8e8; margin: 0; }
.news-meta { font-size: 11px; font-family: monospace; color: #888; letter-spacing: 0.5px; }
.news-dj { color: var(--theme-light); font-weight: bold;}
.news-date { color: #aaa; }
.news-message { font-size: 13px; color: #bbb; line-height: 1.5; margin-top: 2px; overflow-wrap: break-word; word-wrap: break-word; }

/* --- STAFF ROSTER --- */
.roster-category { color: var(--theme-primary); letter-spacing: 2px; border-bottom: 1px dashed #333; padding-bottom: 5px; margin: 10px 0 20px 0; font-size: 14px; }
.staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; }
.contributor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 15px; width: 100%; }
.staff-card { display: flex; gap: 15px; align-items: center; background-color: #110e0c; border: 1px solid #333; padding: 15px; border-radius: 10px; transition: border-color 0.2s, transform 0.2s; }
.staff-card:hover { border-color: var(--theme-primary); transform: translateY(-2px); }
.contributor-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background-color: #110e0c; border: 1px solid #333; width: 100%; padding: 15px 10px; border-radius: 12px; box-sizing: border-box; transition: border-color 0.2s, transform 0.2s; }
.contributor-card:hover { border-color: var(--theme-primary); transform: translateY(-3px); }
.staff-avatar { width: 120px; height: 120px; border-radius: 10px; border: 2px solid var(--theme-primary); object-fit: cover; flex-shrink: 0; background: #111; }
.contributor-avatar { width: 70px; height: 70px; border-radius: 10px; border: 1px solid #333; object-fit: cover; flex-shrink: 0; }
.contributor-name { font-size: 14px; font-weight: 700; color: #e8e8e8; text-align: center; letter-spacing: 0.5px; width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.staff-info { display: flex; flex-direction: column; gap: 4px; }
.staff-name { font-size: 16px; font-weight: 700; color: #e8e8e8; }
.staff-bio { font-size: 12px; color: #bbb; line-height: 1.4; }

/* --- HISTORY SEARCH ARCHIVE --- */
#history-search { width: 100%; background-color: #110e0c; border: 1px solid #333; color: #e8e8e8; font-family: 'Open Sans', sans-serif; padding: 15px; border-radius: 8px; outline: none; font-size: 14px; transition: border-color 0.2s; flex-shrink: 0; }
#history-search:focus { border-color: var(--theme-primary); }
.archive-item { display: flex; align-items: center; justify-content: flex-start; gap: 15px; padding: 12px 15px; border-bottom: 1px solid #222; background-color: #161616; margin-bottom: 5px; border-radius: 5px; transition: background-color 0.2s; }
.archive-item:hover { background-color: #110e0c; }
.archive-time { font-family: monospace; font-size: 14px; color: #888; flex-shrink: 0; width: 140px; letter-spacing: 0.5px; }
.archive-meta { flex-grow: 1; display: flex; align-items: center; font-size: 13px; }
.archive-title { color: #e8e8e8;}
.archive-artist { color: var(--theme-light);}

/* --- SCHEDULE GRID --- */
.schedule-list { display: flex; flex-direction: column; gap: 12px; margin-top: 15px; container-type: inline-size; }
.schedule-card { background-color: #110e0c; border: 1px solid #333; border-radius: 12px; padding: 20px 25px; display: grid; grid-template-columns: 105px 175px 1fr; gap: 20px; align-items: center; transition: border-color 0.2s, background-color 0.2s, transform 0.2s; box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02); }
.schedule-card:hover { border-color: rgba(var(--theme-primary-rgb), 0.5); background-color: rgba(var(--theme-accent-rgb), 0.05); transform: translateX(4px); }
.sch-day { font-family: monospace; font-weight: 700; color: var(--theme-primary); letter-spacing: 2px; font-size: 13px; }
.sch-theme { font-weight: 700; color: #e8e8e8; font-size: 15px; }
.sch-desc { font-size: 13px; color: #888; font-style: italic; line-height: 1.4; transition: color 0.2s; overflow-wrap: break-word; }
.schedule-card:hover .sch-desc { color: var(--theme-light); }

@container (max-width: 600px) {
    .schedule-card { grid-template-columns: 1.5fr; gap: 6px; padding: 15px 20px; }
    .sch-theme { font-size: 16px; margin-bottom: 4px; }
    .sch-desc { font-size: 12px; }
}

/* --- GUESTBOOK & TWITCH --- */
.gb-form-container { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.gb-wall { display: flex; flex-direction: column; gap: 15px; }
#twitch-embed-container { width: 100%; aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden; }