/* Big Bayou — Dark Theme */

/* Self-hosted fonts (DSGVO-konform, kein externer Request) */
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/dm-sans-300.ttf') format('truetype'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/dm-sans-400.ttf') format('truetype'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/dm-sans-500.ttf') format('truetype'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/dm-sans-600.ttf') format('truetype'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/dm-sans-700.ttf') format('truetype'); }
@font-face { font-family: 'DM Sans'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/dm-sans-italic-400.ttf') format('truetype'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/playfair-display-400.ttf') format('truetype'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/playfair-display-500.ttf') format('truetype'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/playfair-display-italic-400.ttf') format('truetype'); }

:root {
    --bg: #0E0E0E;
    --bg-light: #1a1a1a;
    --bg-card: #161616;
    --text: #CFCFCF;
    --text-muted: #888;
    --accent: #E9204F;
    --accent-hover: #ff2d5e;
    --orange: #FFA500;
    --white: #fff;
    --blue: #2a3f8f;
    --blue-glow: rgba(42, 63, 143, 0.15);
    --border: #2a2a2a;
    --success: #28a745;
    --danger: #dc3545;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--orange);
    color: var(--bg);
    padding: 0.5rem 1rem;
    border-radius: 0 0 4px 4px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 9999;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
    border-radius: 2px;
}

.gallery-item:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
    border-radius: 6px;
}

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

a:hover {
    color: var(--orange);
}

.text-orange {
    color: var(--orange);
}

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

/* Header / Navigation */
.site-header {
    background: linear-gradient(180deg, rgba(14,14,14,1) 0%, rgba(14,14,14,0.95) 100%);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 2rem 0.5rem;
    position: static;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.logo {
    width: 215px;
    height: auto;
    filter: url(#logo-duotone);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.04);
}

.mobile-br { display: none; }

.site-tagline {
    color: #fefefe;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    letter-spacing: normal;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 0.15rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.5rem 0.45rem;
    border-radius: 4px;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
    white-space: nowrap;
}

nav a:hover {
    color: var(--accent);
    background: rgba(233, 32, 79, 0.08);
}

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

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
}

.nav-divider {
    width: 1px;
    height: 1rem;
    background: var(--border);
    margin: 0 0.4rem;
}


.social-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding-left: 1rem;
    border-left: 1px solid var(--border);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    opacity: 0.7;
    transition: opacity 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
    opacity: 1;
    background: var(--blue-glow);
    transform: scale(1.1);
}

/* Language Switch */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 0.75rem;
    padding-left: 0.75rem;
    border-left: 1px solid var(--border);
    font-size: 0.85rem;
    font-family: inherit;
    letter-spacing: 0.05em;
}

.lang-switch a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.15rem 0.3rem;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
}

.lang-switch a.active {
    color: var(--orange);
    font-weight: 600;
}

.lang-switch a:hover {
    color: var(--white);
    background: rgba(255, 165, 0, 0.12);
}

.lang-switch .lang-sep {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Prevent nav active underline on lang-switch links */
.lang-switch a::after {
    display: none !important;
}

/* Override nav a styles for lang-switch */
nav .lang-switch a {
    text-transform: none;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    padding: 0.15rem 0.3rem;
}

.admin-user .lang-switch {
    margin-left: 1rem;
}

/* Hero Section */
.hero {
    padding: 0;
    margin: 0;
    max-width: none;
}

.hero-image {
    width: 100%;
    display: block;
}

/* Sections */
section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h5 {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.25rem;
    text-align: center;
}

section h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

/* Concert Tables */
.concerts-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.concerts-table th,
.concerts-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.concerts-table th {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.concerts-table td {
    font-size: 1rem;
}

.concerts-table tr:hover {
    background: var(--bg-light);
}

.concert-date {
    color: var(--orange);
    font-weight: 700;
    white-space: nowrap;
}

.concert-venue {
    color: var(--white);
    font-weight: 500;
}
.concert-venue a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted var(--text-muted);
}
.concert-venue a:hover {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.concert-city {
    color: var(--text-muted);
}

.ticket-link {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.9rem;
    background: transparent;
    color: var(--accent) !important;
    border: 1px solid var(--accent);
    border-radius: 0.375em;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.ticket-link:hover {
    background: var(--accent);
    color: var(--white) !important;
    border-color: var(--accent);
}

.no-concerts {
    color: var(--text-muted);
    font-style: italic;
    padding: 2rem 0;
}

/* Past Concerts collapsible */
.past-concerts-details {
    margin-top: 2.5rem;
    text-align: center;
}

.past-concerts-details summary {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    list-style: none;
    padding: 0.4rem 0;
    user-select: none;
    transition: color 0.2s;
}

.past-concerts-details summary::-webkit-details-marker { display: none; }

.past-concerts-details summary::before {
    content: '→';
    color: var(--accent);
}

.past-concerts-details[open] summary::before {
    content: '↓';
}

.past-concerts-details summary:hover {
    color: var(--accent-hover);
}

.concerts-table.past-concerts {
    margin-top: 1rem;
    opacity: 0.55;
}

/* About Section */
.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.about-text p {
    margin-bottom: 1rem;
}

/* Band Members */
.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.band-member {
    text-align: center;
}

.band-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.band-member h3 {
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
}

.band-member-role {
    color: var(--orange);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

.band-member-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    line-height: 1.5;
}

.band-member-placeholder {
    width: 100%;
    height: 280px;
    background: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

/* Band Details (collapsible) */
.band-details {
    text-align: center;
}

.band-summary {
    cursor: pointer;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    user-select: none;
    transition: color 0.2s;
}

.band-summary::-webkit-details-marker { display: none; }

.band-summary::before {
    content: '→';
    color: var(--accent);
    font-weight: 400;
    transition: transform 0.2s;
}

.band-details[open] .band-summary::before {
    content: '↓';
}

.band-summary:hover {
    color: var(--accent-hover);
}

#band {
    padding-top: 0;
    margin-top: -2rem;
}

.band-details .band-grid {
    margin-top: 2rem;
}

/* Booking CTA */
.booking-row {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    scroll-margin-top: 20px;
}

.booking-image img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.booking-text {
    padding: 1rem 0;
}

.booking-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.booking-text h2 {
    font-size: 1.9rem;
}

.booking-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.booking-text .contact-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.booking-text .contact-info a {
    color: var(--orange);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s;
    cursor: pointer;
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(20, 30, 70, 0.95) 0%, rgba(0, 0, 0, 0.95) 70%);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-caption {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 1001;
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    z-index: 1001;
    padding: 1rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    color: var(--accent);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* Sound & Vision */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 20px var(--blue-glow);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Technical Rider */
.rider {
    max-width: 1200px;
}

.rider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.rider-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
}

.rider-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.rider-role {
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.rider-card ul {
    list-style: none;
    padding: 0;
}

.rider-card li {
    color: var(--text);
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.95rem;
}

.rider-card li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* Press Photos Page */
.press-page {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.press-page h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.press-intro {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.press-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.press-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.press-item img:hover {
    transform: scale(1.03);
}

.press-item .btn {
    margin: 0 1rem 1rem;
    display: block;
    text-align: center;
}

.press-caption {
    color: var(--text);
    font-size: 0.9rem;
    padding: 1rem 1rem 0.25rem;
    text-align: center;
}

.press-credit {
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 0 1rem 0.75rem;
    text-align: center;
}

/* Prose content: restores browser defaults for ul/ol/a stripped by CSS reset */
.prose ul, .prose ol,
.impressum ul, .impressum ol,
.admin-content ul, .admin-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.prose ul, .impressum ul, .admin-content ul { list-style: disc; }
.prose ol, .impressum ol, .admin-content ol { list-style: decimal; }
.prose li, .impressum li, .admin-content li { margin-bottom: 0.25rem; line-height: 1.7; }

.prose a, .impressum a { text-decoration: underline; text-underline-offset: 2px; }

/* Impressum */
.impressum {
    max-width: 800px;
}

.impressum h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.impressum p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Pre-Footer */
.pre-footer {
    text-align: center;
    padding: 2rem 1rem 1rem;
    background: var(--bg);
}

.pre-footer-logo {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    margin-bottom: 0.75rem;
}

.pre-footer-tagline {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin: 0;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--bg-card) 0%, color-mix(in srgb, var(--bg-card), var(--blue) 12%) 100%);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    text-align: center;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ==================== */
/* ADMIN STYLES         */
/* ==================== */

.admin-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.admin-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    font-size: 1.2rem;
    color: var(--white);
}

.admin-nav {
    width: 100%;
    order: 3;
    display: flex;
    justify-content: center;
    gap: 0.5rem 1.2rem;
    flex-wrap: wrap;
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--border);
}

.admin-nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.admin-nav a:hover,
.admin-nav a.active {
    color: var(--accent);
}

.admin-user {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.admin-content {
    flex: 1;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 2rem;
    width: 100%;
}

.admin-content fieldset {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.admin-content fieldset legend {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0 0.5rem;
    color: var(--orange);
}

/* Login Form */
.login-container {
    max-width: 400px;
    margin: 10vh auto;
    padding: 2rem;
}

.login-container h1 {
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s, opacity 0.2s;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--white);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text);
    border: 1px solid var(--border);
}

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

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-danger:hover {
    background: #c82333;
    color: var(--white);
}

.btn-book {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375em;
    margin-top: 1.5rem;
    display: inline-block;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-book:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

/* Admin Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.admin-table th,
.admin-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-table tr:hover {
    background: var(--bg-light);
}

.admin-table tr.past {
    opacity: 0.5;
}

.admin-table .actions {
    display: flex;
    gap: 0.5rem;
}

/* Gallery Admin */
.gallery-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-admin-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.gallery-admin-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-admin-controls {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gallery-alt-input {
    width: 100%;
    padding: 0.4rem 0.6rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.gallery-admin-actions {
    display: flex;
    gap: 0.3rem;
    justify-content: flex-end;
}

/* Video Admin */
.video-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.video-admin-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.video-admin-controls {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid var(--danger);
    color: var(--danger);
}

.alert-info {
    background: rgba(255, 165, 0, 0.15);
    border: 1px solid var(--orange);
    color: var(--orange);
}

/* Page header with actions */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-header h2 {
    margin-bottom: 0;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, background 0.25s ease, color 0.25s ease;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

/* Responsive */

/* Tablet and below */
@media (max-width: 960px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    nav {
        justify-content: center;
    }

    .social-links {
        border-left: none;
        padding-left: 0;
        justify-content: center;
        width: 100%;
        padding-top: 0.5rem;
        border-top: 1px solid var(--border);
    }

    .admin-header {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .admin-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Phone */
@media (max-width: 768px) {
    .pre-footer {
        padding: 1.5rem 1rem;
    }

    .mobile-br { display: block; }

    .site-header {
        padding: 1rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .header-inner {
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 0.75rem;
    }

    .logo {
        width: 180px;
    }

    .site-tagline {
        font-size: 0.72rem;
        letter-spacing: 1px;
    }

    nav {
        gap: 0.25rem;
        justify-content: center;
    }

    nav a {
        font-size: 0.9rem;
        padding: 0.4rem 0.5rem;
    }

    .nav-divider {
        height: 1rem;
    }

    .social-links {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border);
        padding-top: 0.5rem;
        justify-content: center;
        width: 100%;
    }

    .lang-switch {
        border-left: 1px solid var(--border);
        margin-left: 0.5rem;
        padding-left: 0.5rem;
    }

    /* Nav lang-switch (subpages where it's inside nav) */
    nav .lang-switch {
        margin-left: 0.25rem;
        padding-left: 0.5rem;
    }

    .concerts-table thead {
        display: none;
    }

    .concerts-table tbody {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .concerts-table tr {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.2rem 0.6rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
    }

    .concerts-table td {
        display: inline;
        padding: 0;
        border: none;
    }

    .concerts-table .concert-date {
        font-size: 0.9rem;
    }

    .concerts-table .concert-date::after {
        content: '·';
        margin-left: 0.6rem;
        color: var(--text-muted);
        font-weight: 400;
    }

    .concerts-table .concert-venue {
        font-size: 0.9rem;
    }

    .concerts-table .concert-venue::after {
        content: ',';
    }

    .concerts-table .concert-city {
        font-size: 0.9rem;
    }

    .concerts-table td:last-child {
        width: 100%;
        text-align: center;
        padding-top: 0.5rem;
    }

    .concerts-table .ticket-link {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .booking-text {
        text-align: center;
    }

    .booking-text h3 {
        font-size: 1.5rem;
    }

    .booking-text h2 {
        font-size: 1.6rem;
    }

    .booking-text .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

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

    .band-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1.5rem;
    }

    .band-member img {
        height: 200px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .site-footer {
        padding: 2rem 1.5rem;
    }

    /* Admin */
    .admin-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 0.75rem 1rem;
    }

    .admin-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }

    .admin-nav a {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }

    .admin-user {
        font-size: 0.8rem;
    }

    .admin-user .lang-switch {
        margin-left: 0.75rem;
    }

    .admin-content {
        padding: 0 1rem;
        margin: 1.5rem auto;
    }

    .admin-table {
        font-size: 0.85rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.5rem 0.5rem;
    }

    .admin-table .actions {
        flex-wrap: wrap;
    }

    .admin-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .reset-pw-form input[type="password"] {
        width: 100px !important;
    }

    .gallery-admin-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .video-admin-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .press-page {
        padding: 3rem 1.5rem;
    }

    .impressum {
        padding: 3rem 1.5rem;
    }

    .login-container {
        margin: 5vh auto;
        padding: 1.5rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .site-header {
        padding: 0.75rem;
    }

    .logo {
        width: 180px;
    }

    .site-tagline {
        font-size: 0.78rem;
        letter-spacing: 0.5px;
        white-space: normal;
        text-align: center;
    }

    nav a {
        font-size: 0.8rem;
        padding: 0.35rem 0.4rem;
    }

    section {
        padding: 2rem 1rem;
    }

    section h2 {
        font-size: 1.3rem;
    }

    .booking-row {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .booking-text h3 {
        font-size: 1.3rem;
    }

    .booking-text h2 {
        font-size: 1.4rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .press-caption,
    .press-credit {
        text-align: center;
    }

    .band-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .band-member img {
        height: 160px;
    }

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

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .admin-header h1 {
        font-size: 1rem;
    }

    .admin-nav a {
        font-size: 0.7rem;
    }

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

    .press-page {
        padding: 2rem 1rem;
    }

    .impressum {
        padding: 2rem 1rem;
    }
}
