/* ============================================================
   MÁNIČKY.CZ — Ember & Obsidian
   Dark elegant theme for underground music events
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

/* ===== CUSTOM PROPERTIES ===== */

:root {
    --bg: #111111;
    --bg-content: #191919;
    --bg-surface: #212121;
    --bg-elevated: #282828;
    --bg-hover: #2f2f2f;
    --text: #e8e6e1;
    --text-muted: #a0a0a0;
    --text-dim: #707070;
    --accent: #e8553d;
    --accent-light: #f0944a;
    --accent-gradient: linear-gradient(135deg, #e8553d, #f0944a);
    --accent-glow: rgba(232, 85, 61, 0.15);
    --accent-glow-strong: rgba(232, 85, 61, 0.3);
    --border: #2a2a2a;
    --border-light: #383838;
    --radius: 6px;
    --radius-lg: 12px;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.6);
    --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

/* ===== RESET & BASE ===== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent);
    color: #fff;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-content);
    min-height: 100vh;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    background: var(--bg-surface);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
}

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

/* ===== CONTAINER ===== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */

.site-header {
    background: var(--bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.site-header::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0.4;
}

.site-header .logo a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    text-decoration: none;
    transition: opacity var(--transition);
}

.logo-mark {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    object-fit: contain;
}

.site-header .logo a:hover {
    opacity: 0.8;
}

.site-header .logo h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVIGATION ===== */

.main-navigation {
    background: var(--bg-surface);
    padding: 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(17, 17, 17, 0.92);
}

.nav-container {
    display: flex;
    align-items: center;
}

/* Nav logo - hidden by default, revealed when header scrolls away */
.nav-logo {
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    transition:
        max-width var(--transition),
        opacity var(--transition),
        margin var(--transition);
    margin-right: 0;
}

.nav-logo-mark {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    object-fit: contain;
}

.header-hidden .nav-logo {
    max-width: 50px;
    opacity: 1;
    margin-right: 8px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 4px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-muted);
    border-radius: 1px;
    transition:
        transform 0.3s,
        opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 16px 24px;
    transition:
        color var(--transition),
        background var(--transition);
}

.nav-menu a:hover {
    color: var(--text);
    background: var(--bg-hover);
}

.nav-menu .active a {
    color: var(--accent);
}

.nav-menu .active a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--accent-gradient);
}

/* Social links in nav */
.nav-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 0 4px;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-muted);
    border-radius: var(--radius);
    transition:
        color var(--transition),
        background var(--transition);
}

.nav-social-link:hover {
    color: var(--accent);
    background: var(--accent-glow);
}

.nav-social-link svg {
    display: block;
}

/* Footer social */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-muted);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.footer-social a:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-glow);
}

.footer-social svg {
    display: block;
}

/* ===== PAGE CONTENT ===== */

.page-content {
    padding: 80px 0;
    min-height: 60vh;
}

.page-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
}

.content h2 {
    font-size: 32px;
    margin: 2em 0 0.8em;
}

.content h3 {
    font-size: 24px;
    margin: 1.5em 0 0.6em;
}

.content ul,
.content ol {
    margin: 1em 0;
    padding-left: 1.5em;
}

.content li {
    margin-bottom: 0.5em;
}

.content blockquote {
    border-left: 3px solid var(--accent);
    padding: 1em 1.5em;
    margin: 1.5em 0;
    background: var(--bg-surface);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-muted);
    font-style: italic;
}

/* ===== BUTTONS ===== */

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--accent-gradient);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        opacity var(--transition);
    box-shadow: 0 4px 16px var(--accent-glow);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--accent-glow-strong);
    color: #fff;
    opacity: 0.9;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}

.btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-elevated);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    cursor: pointer;
}

.btn-small:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}

.btn-ticket {
    display: inline-block;
    padding: 10px 22px;
    background: var(--accent-gradient);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
    box-shadow: 0 2px 10px var(--accent-glow);
}

.btn-ticket:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--accent-glow-strong);
    color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-large {
    font-size: 20px;
    padding: 20px 56px;
}

/* ===== STATUS BADGES ===== */

.event-status {
    display: inline-block;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.status-upcoming {
    background: rgba(76, 175, 80, 0.15);
    color: #6fcf73;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-ongoing {
    background: rgba(255, 152, 0, 0.15);
    color: #ffb74d;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.status-past {
    background: rgba(128, 128, 128, 0.15);
    color: #999;
    border: 1px solid rgba(128, 128, 128, 0.3);
}

.status-cancelled {
    background: rgba(244, 67, 54, 0.15);
    color: #ef5350;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* ===== GENRE TAGS ===== */

.genre-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--bg-elevated);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-right: 8px;
    margin-bottom: 6px;
    border-radius: 3px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.genre-tag:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.genre-tag-small {
    display: inline-block;
    padding: 3px 10px;
    background: var(--bg-elevated);
    color: var(--accent-light);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 3px;
    border: 1px solid var(--border);
}

/* ===== TAGS ===== */

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 12px;
    border-radius: 3px;
    transition: all var(--transition);
}

.tag:hover {
    border-color: var(--text-muted);
    color: var(--text);
}

/* ============================================================
   MODULAR HOMEPAGE
   ============================================================ */

.modular-page section {
    padding: 80px 0;
    position: relative;
}

.modular-page section h2 {
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Hero Section */
.modular-text:first-child {
    background: var(--bg);
    color: var(--text);
    text-align: center;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.modular-text:first-child::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 20% 80%,
            var(--accent-glow) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 80% 20%,
            rgba(240, 148, 74, 0.08) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.modular-text:first-child h2 {
    font-size: 72px;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modular-text:first-child p {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Featured Event */
.modular-featured-event {
    background: var(--bg-content);
}

.featured-event-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition:
        box-shadow var(--transition),
        border-color var(--transition);
}

.featured-event-card:hover {
    box-shadow:
        var(--shadow-hover),
        0 0 60px var(--accent-glow);
    border-color: var(--border-light);
}

.featured-poster {
    overflow: hidden;
}

.featured-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-event-card:hover .featured-poster img {
    transform: scale(1.05);
}

.featured-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-date {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}

.featured-content h3 {
    font-size: 42px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.featured-content h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.featured-content h3 a:hover {
    color: var(--accent);
}

.featured-venue {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.featured-venue a {
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
}

.featured-venue a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.featured-lineup {
    margin-bottom: 24px;
}

.artist-name {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-elevated);
    color: var(--text);
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 4px;
    border: 1px solid var(--border-light);
    font-weight: 500;
}

.featured-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.featured-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Upcoming Events */
.modular-upcoming-events {
    background: var(--bg-content);
}

.upcoming-events-list {
    display: grid;
    gap: 12px;
    margin-bottom: 50px;
}

.upcoming-event-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 24px 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.upcoming-event-item:hover {
    border-color: var(--border-light);
    background: var(--bg-elevated);
    box-shadow: 0 0 30px var(--accent-glow);
}

.event-date-box {
    text-align: center;
    padding: 14px 10px;
    background: var(--accent-gradient);
    border-radius: var(--radius);
    min-width: 70px;
}

.event-date-box .day {
    display: block;
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-display);
    line-height: 1;
    color: #fff;
}

.event-date-box .month {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.85);
}

.event-info h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.event-info h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.event-info h3 a:hover {
    color: var(--accent);
}

.event-meta-small {
    color: var(--text-muted);
    font-size: 15px;
}

.view-all {
    text-align: center;
}

.view-all a {
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color var(--transition);
}

.view-all a:hover {
    color: var(--accent-light);
}

/* About Section */
.modular-text {
    text-align: center;
    background: var(--bg-content);
    position: relative;
}

.modular-text:not(:first-child)::before {
    content: "";
    display: block;
    max-width: 40%;
    height: 2px;
    margin: 0 auto 20px;
    background: var(--accent-gradient);
    border-radius: 1px;
}

.text-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-muted);
}

.text-content p {
    margin-bottom: 1.2em;
}

/* Newsletter */
.modular-newsletter {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.modular-newsletter h2 {
    color: var(--text);
}

.newsletter-content {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.newsletter-form {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    font-size: 15px;
    font-family: var(--font-body);
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    color: var(--text);
    transition: border-color var(--transition);
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-dim);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.newsletter-form .btn-primary {
    flex-shrink: 0;
}

/* ============================================================
   EVENT DETAIL
   ============================================================ */

.event-detail {
    padding-bottom: 60px;
}

.event-hero {
    position: relative;
    background: var(--bg);
    color: var(--text);
    padding: 80px 0;
    margin-bottom: 60px;
    overflow: hidden;
}

.event-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-content), transparent);
    pointer-events: none;
    z-index: 1;
}

.event-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    overflow: hidden;
}

.event-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.event-hero-content {
    position: relative;
    z-index: 2;
}

.event-hero h1 {
    font-size: 60px;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Event Date Hero Block */
.event-date-hero {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 28px;
}

.event-date-num {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-date-rest {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-date-dayname {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.1;
}

.event-date-year {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.event-meta {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--text-muted);
}

.event-time {
    display: flex;
    gap: 20px;
}

.event-meta strong {
    display: block;
    font-size: 18px;
    color: var(--text);
    font-family: var(--font-display);
}

.venue-link {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.venue-link strong {
    transition: color var(--transition);
}

.venue-link:hover,
.venue-link:hover strong {
    color: var(--accent);
}

.event-genres {
    margin-bottom: 30px;
}

.event-genres .genre-tag {
    padding: 6px 16px;
    background: rgba(232, 85, 61, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 85, 61, 0.25);
    color: var(--accent-light);
    font-size: 12px;
    margin-bottom: 8px;
}

.event-cta {
    margin-top: 40px;
}

/* Event Content Layout */
.event-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
}

.event-main section {
    margin-bottom: 60px;
}

.event-main h2 {
    font-size: 36px;
    margin-bottom: 25px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.event-main h2::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-gradient);
}

.event-main h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Lineup */
.lineup-list {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

.lineup-artist {
    padding: 24px 28px;
    background: var(--bg-surface);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: background var(--transition);
}

.lineup-artist:hover {
    background: var(--bg-elevated);
}

.lineup-artist h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.artist-link {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.artist-link:hover {
    color: var(--accent);
}

.lineup-timeline {
    background: var(--bg-surface);
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.timeline {
    list-style: none;
}

.timeline li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    color: var(--text-muted);
}

.timeline li:last-child {
    border-bottom: none;
}

/* Recordings */
.recordings-list {
    display: grid;
    gap: 20px;
}

.recording-item {
    background: var(--bg-surface);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.recording-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    padding: 24px;
    background: var(--bg-surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.faq-item h3 {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 20px;
}

.faq-item p {
    color: var(--text-muted);
}

/* Event Sidebar */
.event-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.event-sidebar section {
    background: var(--bg-surface);
    padding: 28px;
    margin-bottom: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color var(--transition);
}

.event-sidebar-poster {
    padding: 0 !important;
    overflow: hidden;
}

.event-sidebar-poster img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.event-sidebar-poster:hover img {
    transform: scale(1.03);
}

.event-sidebar section:hover {
    border-color: var(--border-light);
}

.event-sidebar h3 {
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-muted);
}

.ticket-prices {
    list-style: none;
    margin-bottom: 24px;
}

.ticket-prices li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    display: flex;
    justify-content: space-between;
}

.ticket-prices li:last-child {
    border-bottom: none;
}

.event-sidebar .btn-primary {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
}

.capacity-info,
.age-info {
    margin-top: 12px;
    font-size: 15px;
    color: var(--text-muted);
}

.age-info {
    color: #ef5350;
    font-weight: 600;
}

.event-ical {
    margin-bottom: 16px;
}

/* Related Events */
.related-events {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.related-events h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

/* ============================================================
   VENUE DETAIL
   ============================================================ */

.venue-detail {
    padding: 40px 0;
}

.venue-header {
    margin-bottom: 40px;
}

.venue-header h1 {
    font-size: 48px;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.venue-meta {
    color: var(--text-muted);
    font-size: 17px;
}

.venue-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 50px;
}

.venue-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.5s;
}

.venue-gallery img:hover {
    transform: scale(1.02);
}

.venue-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    margin-bottom: 60px;
}

.venue-main section {
    margin-bottom: 40px;
}

.venue-main h2 {
    font-size: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    position: relative;
}

.venue-main h2::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gradient);
}

.venue-main h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.facilities-list {
    list-style: none;
}

.facilities-list li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.facilities-list li:last-child {
    border-bottom: none;
}

.bar-info,
.cloakroom-info {
    margin-top: 15px;
    padding: 18px;
    background: var(--bg-surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.venue-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.venue-sidebar section {
    background: var(--bg-surface);
    padding: 25px;
    margin-bottom: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.venue-sidebar h3 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.venue-sidebar address {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-muted);
}

.map-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--bg-elevated);
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    font-size: 15px;
    font-weight: 500;
    transition: all var(--transition);
}

.map-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.contact-list,
.social-links {
    list-style: none;
}

.contact-list li,
.social-links li {
    padding: 8px 0;
}

.contact-list a,
.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-list a:hover,
.social-links a:hover {
    color: var(--accent);
}

.venue-events {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.placeholder {
    color: var(--text-dim);
    font-style: italic;
}

/* ============================================================
   ARTIST DETAIL
   ============================================================ */

.artist-detail {
    padding: 40px 0;
}

.artist-header {
    margin-bottom: 60px;
    background: var(--bg-surface);
    padding: 60px 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.artist-header-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: center;
}

.artist-info h1 {
    font-size: 52px;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.artist-genres {
    margin-bottom: 20px;
}

.artist-bio-short {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.artist-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
    border-radius: var(--radius);
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}

.artist-photo img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.artist-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    margin-bottom: 60px;
}

.artist-main section {
    margin-bottom: 50px;
}

.artist-main h2 {
    font-size: 32px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    position: relative;
}

.artist-main h2::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gradient);
}

.artist-main h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Audio & Video */
.audio-samples,
.video-samples {
    display: grid;
    gap: 24px;
}

.audio-sample,
.video-sample {
    background: var(--bg-surface);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.embed-container {
    margin-top: 15px;
}

.embed-container iframe {
    width: 100%;
    border: none;
    border-radius: var(--radius);
}

.video-embed iframe {
    aspect-ratio: 16 / 9;
    height: auto;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.5s;
}

.gallery-grid a:hover img,
.gallery-grid img:hover {
    transform: scale(1.03);
}

/* Artist Sidebar */
.artist-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.artist-sidebar section {
    background: var(--bg-surface);
    padding: 25px;
    margin-bottom: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.artist-sidebar h3 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

/* Discography */
.discography-list {
    list-style: none;
}

.discography-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.discography-list li:last-child {
    border-bottom: none;
}

.year {
    color: var(--text-dim);
    font-size: 13px;
}

.album-link {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color var(--transition);
}

.album-link:hover {
    color: var(--accent);
}

/* Members */
.members-list {
    list-style: none;
}

.members-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.members-list li:last-child {
    border-bottom: none;
}

.instrument {
    color: var(--text-muted);
    font-size: 14px;
}

.period {
    color: var(--text-dim);
    font-size: 13px;
    font-style: italic;
}

.artist-events {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.artist-events-list,
.venue-events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.artist-event-item,
.venue-event-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px;
    align-items: center;
    padding: 24px 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.artist-event-item:hover,
.venue-event-item:hover {
    border-color: var(--border-light);
    background: var(--bg-elevated);
    box-shadow: 0 0 30px var(--accent-glow);
}

/* ============================================================
   CALENDAR PAGE
   ============================================================ */

.calendar-page {
    padding: 60px 0;
}

.calendar-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

/* Filters */
.calendar-filters {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding: 28px;
    background: var(--bg-surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.calendar-filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.filter-search {
    flex: 1;
    min-width: 200px;
}

.filter-group {
    flex: 1;
    min-width: 180px;
}

.filter-group > label {
    display: block;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.genre-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted);
}

.checkbox-label:hover {
    border-color: var(--accent);
    color: var(--text);
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--accent);
}

.checkbox-label:has(input:checked) {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.filter-group select,
.filter-group input[type="text"] {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
    transition: border-color var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.filter-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1.4 0L6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.filter-group select:focus,
.filter-group input[type="text"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.filter-group select option {
    background: var(--bg-surface);
    color: var(--text);
}

/* View Toggle */
.view-toggle {
    display: flex;
    gap: 4px;
    align-self: flex-end;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    background: var(--bg);
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.view-btn:hover {
    border-color: var(--accent);
    color: var(--text);
}

.view-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Calendar Cards - List View */
.calendar-events[data-view="list"] .calendar-card {
    display: flex;
    gap: 0;
    align-items: stretch;
    margin-bottom: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    overflow: hidden;
}

.calendar-events[data-view="list"] .calendar-card:hover {
    border-color: var(--border-light);
    box-shadow: 0 0 30px var(--accent-glow);
}

.calendar-events[data-view="list"] .calendar-card-poster {
    flex: 0 0 130px;
    overflow: hidden;
}

.calendar-events[data-view="list"] .calendar-card-poster img {
    width: 130px;
    height: 100%;
    min-height: 130px;
    object-fit: cover;
    transition: transform 0.5s;
}

.calendar-events[data-view="list"]
    .calendar-card:hover
    .calendar-card-poster
    img {
    transform: scale(1.05);
}

.calendar-card-body {
    display: flex;
    flex: 1;
    gap: 24px;
    align-items: center;
    padding: 20px 24px;
}

.calendar-card-date {
    text-align: center;
    min-width: 60px;
    flex-shrink: 0;
}

.calendar-card-date .day {
    display: block;
    font-size: 30px;
    font-weight: 700;
    font-family: var(--font-display);
    line-height: 1;
    color: var(--text);
}

.calendar-card-date .month {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-card-info {
    flex: 1;
    min-width: 0;
}

.calendar-card-info h2 {
    font-size: 20px;
    margin-bottom: 6px;
    text-align: left;
}

.calendar-card-info h2 a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.calendar-card-info h2 a:hover {
    color: var(--accent);
}

.calendar-venue {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 6px;
}

.calendar-desc {
    font-size: 15px;
    color: var(--text-dim);
    margin-bottom: 8px;
    line-height: 1.5;
}

.calendar-genres .genre-tag {
    font-size: 10px;
    padding: 3px 8px;
    margin-right: 4px;
}

.calendar-card-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.calendar-card-actions .event-status {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 0;
}

/* Calendar Cards - Grid View */
.calendar-events[data-view="grid"] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.calendar-events[data-view="grid"] .calendar-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.calendar-events[data-view="grid"] .calendar-card:hover {
    border-color: var(--border-light);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-4px);
}

.calendar-events[data-view="grid"] .calendar-card-poster {
    overflow: hidden;
}

.calendar-events[data-view="grid"] .calendar-card-poster img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.calendar-events[data-view="grid"]
    .calendar-card:hover
    .calendar-card-poster
    img {
    transform: scale(1.05);
}

.calendar-events[data-view="grid"] .calendar-card-body {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 10px;
}

.calendar-events[data-view="grid"] .calendar-card-date {
    text-align: left;
}

.calendar-events[data-view="grid"] .calendar-card-date .day {
    display: inline;
    font-size: 20px;
}

.calendar-events[data-view="grid"] .calendar-card-date .month {
    display: inline;
    margin-left: 5px;
}

.calendar-events[data-view="grid"] .calendar-card-info h2 {
    font-size: 20px;
}

.calendar-events[data-view="grid"] .calendar-card-actions {
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

/* No results */
.no-results,
.no-events {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-dim);
    font-size: 18px;
    font-style: italic;
}

/* ============================================================
   ARCHIVE PAGE
   ============================================================ */

.archive-page {
    padding: 60px 0;
}

.archive-header {
    text-align: center;
    margin-bottom: 60px;
}

.archive-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.archive-header p {
    color: var(--text-muted);
    font-size: 18px;
}

.archive-events {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.archive-event-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.archive-event-card:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.archive-event-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.archive-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.archive-event-card:hover .archive-event-image img {
    transform: scale(1.05);
}

.archive-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    color: var(--accent-light);
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.archive-event-content {
    padding: 24px;
}

.archive-event-date {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.archive-event-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.archive-event-content h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.archive-event-content h3 a:hover {
    color: var(--accent);
}

.archive-event-meta {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

/* ============================================================
   LIST PAGES (Venues & Artists)
   ============================================================ */

.venues-list-page,
.artists-list-page {
    padding: 60px 0;
}

.venues-list-page header,
.artists-list-page header {
    text-align: center;
    margin-bottom: 50px;
}

.venues-list-page header h1,
.artists-list-page header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.intro {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.venues-grid,
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.venue-card,
.artist-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.venue-card:hover,
.artist-card:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.venue-card-image,
.artist-card-image {
    overflow: hidden;
}

.venue-card-image img,
.artist-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}

.venue-card:hover .venue-card-image img,
.artist-card:hover .artist-card-image img {
    transform: scale(1.05);
}

.venue-card-content,
.artist-card-content {
    padding: 24px;
}

.venue-card-content h3,
.artist-card-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.venue-card-content h3 a,
.artist-card-content h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.venue-card-content h3 a:hover,
.artist-card-content h3 a:hover {
    color: var(--accent);
}

.venue-card-location,
.venue-card-capacity {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.artist-card-genres {
    margin-bottom: 10px;
}

.artist-card-bio {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ============================================================
   SPONSORS SECTION
   ============================================================ */

.sponsors-section {
    background: var(--bg-surface);
    padding: 44px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.sponsors-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 36px;
    margin-bottom: 20px;
}

.sponsor-logo {
    display: inline-block;
}

.sponsor-logo img {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.4s;
}

.sponsor-logo:hover img {
    opacity: 1;
}

.sponsors-text {
    font-size: 14px;
    color: var(--text-dim);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: var(--bg);
    color: var(--text);
    padding: 0 0 36px;
    text-align: center;
}

.footer-rule {
    height: 2px;
    background: var(--accent-gradient);
    margin-bottom: 50px;
    opacity: 0.7;
}

.footer-contact {
    margin-bottom: 40px;
}

.footer-org-block {
    margin-bottom: 24px;
}

.footer-org {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 6px;
    line-height: 1.2;
    color: var(--text);
}

.footer-ico {
    display: inline-block;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.footer-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 28px;
    font-size: 16px;
    line-height: 1.8;
}

.footer-person {
    color: var(--text-muted);
}

.footer-link {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1px;
    transition:
        border-color var(--transition),
        color var(--transition);
}

.footer-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-copy {
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 44px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */

.gallery-page {
    padding: 60px 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.gallery-intro {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-filters {
    margin-bottom: 40px;
    padding: 20px 28px;
    background: var(--bg-surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.gallery-albums {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-album-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.gallery-album-card:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.album-cover {
    display: block;
    position: relative;
    overflow: hidden;
}

.album-cover[data-gallery] {
    cursor: pointer;
}

.album-photos {
    display: none;
}

.album-cover img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-album-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-cover-placeholder {
    width: 100%;
    height: 220px;
    background: var(--bg-elevated);
}

.album-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.album-info {
    padding: 20px 24px;
}

.album-date {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.album-info h3 {
    font-size: 20px;
    margin: 8px 0 6px;
}

.album-info h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.album-info h3 a:hover {
    color: var(--accent);
}

.album-venue {
    font-size: 15px;
    color: var(--text-muted);
}

/* ============================================================
   MEDIA COVERAGE
   ============================================================ */

.event-media-coverage .coverage-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.event-media-coverage .coverage-item:last-child {
    border-bottom: none;
}

.event-media-coverage .coverage-item a {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.event-media-coverage .coverage-item a:hover {
    color: var(--accent);
}

.coverage-meta {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================================
   FANCYBOX OVERRIDES
   ============================================================ */

.fancybox__container {
    --fancybox-bg: rgba(10, 10, 10, 0.95);
    --fancybox-color: var(--text);
}

.fancybox__caption {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    padding: 12px 0;
    text-align: center;
}

/* ============================================================
   ERROR PAGE
   ============================================================ */

.error-page {
    padding: 120px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.error-code {
    display: block;
    font-family: var(--font-display);
    font-size: 140px;
    font-weight: 700;
    line-height: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.error-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.error-message {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ============================================================
   RESPONSIVE — 968px
   ============================================================ */

@media (max-width: 968px) {
    .featured-event-card {
        grid-template-columns: 1fr;
    }

    .featured-poster {
        height: 350px;
    }

    .featured-content {
        padding: 36px;
    }

    .event-content-wrapper {
        grid-template-columns: 1fr;
    }

    .event-sidebar {
        position: static;
    }

    .venue-content-wrapper {
        grid-template-columns: 1fr;
    }

    .venue-sidebar {
        position: static;
    }

    .artist-header {
        padding: 30px 20px;
    }

    .artist-header-content {
        grid-template-columns: 1fr;
    }

    .artist-content-wrapper {
        grid-template-columns: 1fr;
    }

    .artist-sidebar {
        position: static;
    }

    .upcoming-event-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }

    .event-date-box {
        width: 100px;
        margin: 0 auto;
    }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(17, 17, 17, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu a {
        padding: 14px 20px;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu .active a::after {
        left: 0;
        right: auto;
        width: 3px;
        height: 100%;
        bottom: 0;
        top: 0;
    }

    .header-hidden .nav-logo {
        max-width: 40px;
    }

    .nav-social {
        padding-right: 0;
    }

    .site-header .logo a {
        justify-content: center;
        position: relative;
    }

    .site-header .logo .logo-mark {
        position: absolute;
        left: 0;
        width: 72px;
        height: 72px;
    }

    .site-header .logo h1 {
        font-size: 30px;
    }

    .page-content h1 {
        font-size: 36px;
    }

    .modular-page section {
        padding: 60px 0;
    }

    .modular-page section h2 {
        font-size: 34px;
    }

    .modular-text:first-child {
        min-height: 40vh;
    }

    .modular-text:first-child h2 {
        font-size: 44px;
    }

    .modular-text:first-child p {
        font-size: 18px;
    }

    .featured-content h3 {
        font-size: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .event-hero h1 {
        font-size: 38px;
    }

    .event-date-num {
        font-size: 48px;
    }

    .event-date-dayname {
        font-size: 22px;
    }

    .event-meta {
        flex-direction: column;
        gap: 16px;
    }

    .btn-large {
        font-size: 16px;
        padding: 14px 28px;
    }

    .venue-header h1 {
        font-size: 36px;
    }

    .venue-gallery {
        grid-template-columns: 1fr;
    }

    .artist-info h1 {
        font-size: 38px;
    }

    .artist-bio-short {
        font-size: 17px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-header h1 {
        font-size: 36px;
    }

    .gallery-albums {
        grid-template-columns: 1fr;
    }

    .error-code {
        font-size: 100px;
    }

    .error-content h1 {
        font-size: 28px;
    }

    .calendar-page h1 {
        font-size: 32px;
    }

    .calendar-filters-row {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .calendar-filters-row .filter-search {
        width: 100%;
    }

    .calendar-filters-row .view-toggle {
        align-self: flex-end;
    }

    .calendar-events[data-view="list"] .calendar-card {
        flex-direction: column;
    }

    .calendar-events[data-view="list"] .calendar-card-poster {
        flex: none;
    }

    .calendar-events[data-view="list"] .calendar-card-poster img {
        width: 100%;
        height: 200px;
    }

    .calendar-card-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .calendar-card-actions {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .calendar-events[data-view="grid"] {
        grid-template-columns: 1fr;
    }

    .archive-header h1 {
        font-size: 36px;
    }

    .archive-events {
        grid-template-columns: 1fr;
    }

    .venues-list-page header h1,
    .artists-list-page header h1 {
        font-size: 36px;
    }

    .venues-grid,
    .artists-grid {
        grid-template-columns: 1fr;
    }

    .footer-org {
        font-size: 22px;
    }

    .footer-details {
        flex-direction: column;
        gap: 6px;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
    body {
        background: #fff;
        color: #000;
    }

    .site-header,
    .main-navigation,
    .site-footer,
    .sponsors-section,
    .event-cta,
    .btn-primary,
    .btn-ticket,
    .calendar-filters,
    .view-toggle {
        display: none !important;
    }

    a {
        color: #000;
    }

    .event-hero {
        background: #fff;
        color: #000;
    }

    .event-poster {
        display: none;
    }
}

/* ============================================================
   ANIMATIONS — subtle page-load reveals
   ============================================================ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modular-text:first-child h2,
.modular-text:first-child p {
    animation: fadeUp 0.8s ease-out both;
}

.modular-text:first-child p {
    animation-delay: 0.15s;
}

.featured-event-card {
    animation: fadeUp 0.7s ease-out both;
    animation-delay: 0.1s;
}

.event-hero-content {
    animation: fadeUp 0.8s ease-out both;
}
