/* =========================================================
REWORKED — Band Website
Design system: dark stage aesthetic, red/mint/purple accents
========================================================= */
:root {
--bg: #0a0a0c;
--bg-soft: #121215;
--surface: #1a1a1f;
--surface-2: #212127;
--border: rgba(255, 255, 255, 0.08);
--border-strong: rgba(255, 255, 255, 0.16);
--text: #f5f5f7;
--text-muted: #a3a3ad;
--text-faint: #6f6f7a;
--red: #e0362a;
--red-dark: #8c251f;
--red-soft: rgba(224, 54, 42, 0.16);
--mint: #7fe0c0;
--purple: #b876ff;
--pink: #ff6fae;
--radius-sm: 10px;
--radius-md: 16px;
--radius-lg: 28px;
--shadow-md: 0 12px 32px rgba(0, 0, 0, 0.35);
--shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.45);
--font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
--font-body: "Inter", system-ui, -apple-system, sans-serif;
--container-w: 1180px;
--header-h: 84px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
margin: 0;
background: var(--bg);
color: var(--text);
font-family: var(--font-body);
font-size: 16px;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
font-family: var(--font-display);
font-weight: 600;
line-height: 1.15;
margin: 0 0 0.5em;
letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--text-muted); }
.container {
max-width: var(--container-w);
margin: 0 auto;
padding: 0 28px;
}
.skip-link {
position: absolute;
left: -999px;
top: 0;
background: var(--red);
color: #fff;
padding: 12px 20px;
z-index: 999;
border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
/* ---------- Buttons ---------- */
.btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 15px 28px;
border-radius: 999px;
font-weight: 600;
font-size: 0.95rem;
border: 1px solid transparent;
cursor: pointer;
transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
white-space: nowrap;
}
.btn-primary {
background: linear-gradient(135deg, var(--red), var(--red-dark));
color: #fff;
box-shadow: 0 10px 30px rgba(224, 54, 42, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(224, 54, 42, 0.5); }
.btn-ghost {
background: rgba(255, 255, 255, 0.04);
color: var(--text);
border-color: var(--border-strong);
backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }
/* ---------- Header ---------- */
.site-header {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
height: var(--header-h);
display: flex;
align-items: center;
background: transparent;
border-bottom: 1px solid transparent;
transition: background 0.35s ease, border-color 0.35s ease, height 0.35s ease;
}
.site-header.scrolled {
background: rgba(10, 10, 12, 0.82);
backdrop-filter: blur(14px) saturate(140%);
border-bottom-color: var(--border);
height: 72px;
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 40px; height: 40px; border-radius: 50%; }
.brand-name {
font-family: var(--font-display);
font-weight: 700;
font-size: 1.15rem;
letter-spacing: 0.04em;
}
.main-nav ul {
display: flex;
gap: 34px;
list-style: none;
margin: 0;
padding: 0;
}
.nav-link {
font-size: 0.95rem;
font-weight: 500;
color: var(--text-muted);
position: relative;
padding: 6px 0;
transition: color 0.2s ease;
}
.nav-link::after {
content: "";
position: absolute;
left: 0; right: 100%;
bottom: 0;
height: 2px;
background: var(--red);
transition: right 0.25s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.icon-link {
display: inline-flex;
align-items: center;
justify-content: center;
width: 38px; height: 38px;
border-radius: 50%;
color: var(--text-muted);
border: 1px solid var(--border);
transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.icon-link:hover { color: var(--red); border-color: var(--red); transform: translateY(-2px); }
.nav-toggle {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 42px; height: 42px;
background: none;
border: 1px solid var(--border);
border-radius: 10px;
cursor: pointer;
}
.nav-toggle span {
display: block;
width: 18px;
height: 2px;
margin: 0 auto;
background: var(--text);
transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* ---------- Hero ---------- */
.hero {
position: relative;
min-height: 100svh;
display: flex;
align-items: center;
overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
width: 100%; height: 100%;
object-fit: cover;
filter: saturate(1.05) contrast(1.05);
transform: scale(1.04);
}
.hero-overlay {
position: absolute; inset: 0;
background:
linear-gradient(180deg, rgba(8,8,10,0.55) 0%, rgba(8,8,10,0.72) 45%, rgba(8,8,10,0.96) 100%),
linear-gradient(90deg, rgba(8,8,10,0.55), rgba(8,8,10,0.25) 50%, rgba(8,8,10,0.55));
}
.hero-glow {
position: absolute;
width: 560px; height: 560px;
border-radius: 50%;
filter: blur(120px);
opacity: 0.35;
pointer-events: none;
}
.hero-glow-red { background: var(--red); top: -120px; right: -120px; }
.hero-glow-purple { background: var(--purple); bottom: -160px; left: -140px; opacity: 0.28; }
.hero-content { position: relative; z-index: 1; padding-top: var(--header-h); }
.eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 0.85rem;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--mint);
margin-bottom: 22px;
}
.eyebrow::before {
content: "";
width: 8px; height: 8px;
border-radius: 50%;
background: var(--mint);
box-shadow: 0 0 12px var(--mint);
}
.hero-title {
display: flex;
align-items: center;
gap: 22px;
font-size: clamp(3rem, 9vw, 6.5rem);
font-weight: 700;
letter-spacing: -0.02em;
margin-bottom: 26px;
color: #fff;
}
.hero-logo { width: clamp(56px, 8vw, 96px); height: auto; border-radius: 50%; box-shadow: 0 0 40px rgba(224,54,42,0.35); }
.hero-subtitle {
max-width: 640px;
font-size: clamp(1.05rem, 2vw, 1.25rem);
color: rgba(245,245,247,0.86);
margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; }
.scroll-cue {
position: absolute;
bottom: 34px; left: 50%;
transform: translateX(-50%);
width: 26px; height: 42px;
border: 2px solid rgba(255,255,255,0.4);
border-radius: 20px;
z-index: 1;
}
.scroll-cue span {
position: absolute;
top: 6px; left: 50%;
width: 4px; height: 8px;
margin-left: -2px;
border-radius: 2px;
background: var(--mint);
animation: scroll-cue 1.8s ease infinite;
}
@keyframes scroll-cue {
0% { opacity: 1; transform: translateY(0); }
70% { opacity: 0; transform: translateY(14px); }
100% { opacity: 0; transform: translateY(14px); }
}
/* ---------- Sections ---------- */
.section { padding: 130px 0; position: relative; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.kicker {
display: inline-block;
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--red);
margin-bottom: 14px;
}
.section-head h2 {
font-size: clamp(2rem, 4vw, 2.75rem);
color: #fff;
}
.lead { font-size: 1.1rem; color: var(--text-muted); }
/* ---------- Instruments grid ---------- */
.instruments-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
gap: 20px;
}
.instrument-card {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
padding: 32px 16px;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-md);
text-align: center;
font-weight: 600;
transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.instrument-card:hover {
transform: translateY(-6px);
border-color: var(--red);
background: var(--surface-2);
}
.instrument-icon {
width: 52px; height: 52px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: var(--red-soft);
color: var(--red);
}
.instrument-icon svg {
width: 26px; height: 26px;
fill: none;
stroke: currentColor;
stroke-width: 1.6;
stroke-linecap: round;
stroke-linejoin: round;
}
/* ---------- Story / Hinter den Kulissen ---------- */
.story-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
}
.story-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 36px 32px;
}
.story-card h3 {
color: var(--mint);
font-size: 1.25rem;
margin-bottom: 18px;
}
.story-card p:last-child { margin-bottom: 0; }
/* ---------- Repertoire ---------- */
.repertoire-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-bottom: 24px;
}
.repertoire-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 30px 28px;
transition: transform 0.25s ease, border-color 0.25s ease;
}
.repertoire-card:hover { transform: translateY(-6px); border-color: var(--mint); }
.repertoire-card h3 { font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
.repertoire-card p:last-of-type { margin-bottom: 16px; }
.repertoire-tag {
display: inline-block;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--red);
margin-bottom: 10px;
}
.repertoire-footer {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.8rem;
font-weight: 600;
color: var(--mint);
}
.repertoire-footer::before {
content: "";
width: 6px; height: 6px;
border-radius: 50%;
background: var(--mint);
}
.event-types-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-bottom: 56px;
}
.event-type-card {
background: var(--bg-soft);
border: 1px solid var(--border-strong);
border-radius: var(--radius-md);
padding: 30px 28px;
}
.event-type-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.event-type-card .repertoire-tag { margin-bottom: 6px; }
.event-type-card p:last-of-type { margin-bottom: 16px; }
.repertoire-cta {
text-align: center;
max-width: 680px;
margin: 0 auto;
padding-top: 8px;
}
.repertoire-cta h3 { color: #fff; font-size: 1.6rem; margin-bottom: 14px; }
.repertoire-cta p { margin-bottom: 28px; }
/* ---------- Gallery ---------- */
.gallery-grid {
display: grid;
grid-template-columns: 1.6fr 1fr;
gap: 24px;
}
.gallery-item {
position: relative;
margin: 0;
border-radius: var(--radius-md);
overflow: hidden;
border: 1px solid var(--border);
aspect-ratio: 4 / 3;
}
.gallery-item img {
width: 100%; height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
position: absolute;
left: 0; right: 0; bottom: 0;
padding: 22px;
font-weight: 600;
font-size: 0.95rem;
color: #fff;
background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75));
}
/* ---------- Testimonial ---------- */
.testimonial {
max-width: 780px;
margin: 0 auto;
text-align: center;
padding: 0 20px;
}
.quote-mark { color: var(--red); opacity: 0.5; margin-bottom: 18px; }
.testimonial p {
font-family: var(--font-display);
font-size: clamp(1.3rem, 2.6vw, 1.75rem);
color: #fff;
font-weight: 500;
line-height: 1.45;
margin-bottom: 22px;
}
.testimonial cite {
font-style: normal;
font-weight: 600;
color: var(--mint);
letter-spacing: 0.02em;
}
.quote-chip-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
max-width: 980px;
margin: 56px auto 0;
}
.quote-chip {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 24px 26px;
text-align: center;
font-weight: 500;
color: var(--text);
font-size: 0.98rem;
line-height: 1.5;
}
/* ---------- Contact / Booking ---------- */
.contact-grid {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 36px;
align-items: start;
}
.booking-form {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 40px;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.form-field { margin-bottom: 20px; }
.form-field label {
display: block;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 8px;
color: var(--text-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
width: 100%;
padding: 13px 16px;
border-radius: var(--radius-sm);
border: 1px solid var(--border-strong);
background: var(--bg-soft);
color: var(--text);
font-family: var(--font-body);
font-size: 0.95rem;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
outline: none;
border-color: var(--red);
box-shadow: 0 0 0 3px var(--red-soft);
}
.form-field textarea { resize: vertical; }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a3a3ad' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-hint {
margin-top: 18px;
font-size: 0.85rem;
color: var(--text-faint);
text-align: center;
}
.form-hint a { color: var(--mint); font-weight: 600; }
.form-hint.success { color: var(--mint); }
.form-hint.error { color: var(--red); }
.contact-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 36px;
}
.contact-card h3 { color: #fff; margin-bottom: 22px; font-size: 1.15rem; }
.contact-line {
display: flex;
align-items: flex-start;
gap: 14px;
padding: 14px 0;
border-bottom: 1px solid var(--border);
font-weight: 500;
color: var(--text);
transition: color 0.2s ease;
}
.contact-line:last-child { border-bottom: none; }
.contact-line svg { flex-shrink: 0; color: var(--red); margin-top: 2px; }
a.contact-line:hover { color: var(--mint); }
.contact-address span,
.contact-hours span { color: var(--text-muted); font-weight: 400; line-height: 1.5; }
.contact-info {
display: flex;
flex-direction: column;
gap: 24px;
}
.contact-note {
margin: 16px 0 0;
font-size: 0.88rem;
color: var(--text-faint);
}
.map-embed {
border-radius: var(--radius-lg);
overflow: hidden;
border: 1px solid var(--border);
line-height: 0;
}
.map-embed iframe {
width: 100%;
height: 240px;
border: 0;
filter: grayscale(0.3) invert(0.92) contrast(0.9);
}
.map-link {
display: block;
text-align: center;
margin-top: -12px;
font-size: 0.85rem;
font-weight: 600;
color: var(--text-faint);
transition: color 0.2s ease;
}
.map-link:hover { color: var(--mint); }
/* ---------- Footer ---------- */
.site-footer {
background: var(--bg-soft);
border-top: 1px solid var(--border);
padding: 56px 0 28px;
}
.footer-inner {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 24px;
padding-bottom: 36px;
border-bottom: 1px solid var(--border);
}
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s ease; }
.footer-nav a:hover { color: var(--text); }
.footer-social { display: flex; gap: 14px; }
.footer-bottom {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 12px;
padding-top: 28px;
font-size: 0.85rem;
color: var(--text-faint);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--text-faint); transition: color 0.2s ease; }
.footer-legal a:hover { color: var(--text-muted); }
/* ---------- Scroll reveal ----------
Progressive enhancement: content is only hidden pre-reveal once JS has
confirmed it can run the animation (html.js, set immediately in
script.js). No JS / JS blocked / crawlers without scroll simulation =
content is simply shown, no animation. Also force-visible for print. */
.js .reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
@media print {
.reveal { opacity: 1 !important; transform: none !important; }
}
/* ---------- Responsive ---------- */
@media (max-width: 980px) {
.story-grid { grid-template-columns: 1fr; }
.contact-grid { grid-template-columns: 1fr; }
.gallery-grid { grid-template-columns: 1fr; }
.repertoire-grid { grid-template-columns: repeat(2, 1fr); }
.event-types-grid { grid-template-columns: repeat(2, 1fr); }
.quote-chip-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
.main-nav { display: none; }
.header-actions .btn-sm { display: none; }
.nav-toggle { display: flex; }
.main-nav.open {
display: block;
position: fixed;
top: var(--header-h);
left: 0; right: 0;
background: rgba(10,10,12,0.98);
backdrop-filter: blur(14px);
border-bottom: 1px solid var(--border);
padding: 12px 28px 28px;
}
.main-nav.open ul { flex-direction: column; gap: 4px; }
.main-nav.open .nav-link { display: block; padding: 14px 0; font-size: 1.05rem; }
.form-row { grid-template-columns: 1fr; }
.section { padding: 90px 0; }
.repertoire-grid { grid-template-columns: 1fr; }
.event-types-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
.booking-form, .contact-card { padding: 26px; }
.hero-title { gap: 14px; }
.container { padding: 0 20px; }
}