:root {
    --bg-start: #0a0a0f;
    --bg-end: #161622;
    --accent: #c9a96e;
    --accent-soft: rgba(201, 169, 110, 0.18);
    --text: #f4f4f6;
    --text-muted: #9a9aa8;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-hover: rgba(255, 255, 255, 0.09);
    --border: rgba(255, 255, 255, 0.08);
    --radius: 999px;
    --transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background:
        radial-gradient(1200px 600px at 50% -10%, rgba(201, 169, 110, 0.12), transparent 60%),
        radial-gradient(800px 400px at 100% 100%, rgba(120, 90, 200, 0.08), transparent 65%),
        linear-gradient(180deg, var(--bg-start), var(--bg-end));
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 460px;
    margin: 0 auto;
    padding: 56px 24px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Floating background decorations */
.bg-decor {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bg-decor .float {
    position: absolute;
    width: 48px;
    height: 48px;
    opacity: 0.08;
    filter: blur(0.3px);
    will-change: transform;
}

.bg-decor .float[viewBox]:nth-of-type(3n+1) { color: var(--accent); }        /* mics */
.bg-decor .float[viewBox]:nth-of-type(3n+2) { color: #e8994a; }              /* oranges */
.bg-decor .float[viewBox]:nth-of-type(3n)   { color: #d9d9e0; opacity: 0.06; } /* notes */

.float-1 { top:  8%; left:  6%; width: 54px; height: 54px; animation: drift-a 22s ease-in-out infinite; }
.float-2 { top: 18%; left: 82%; width: 42px; height: 42px; animation: drift-b 26s ease-in-out infinite; animation-delay: -4s; }
.float-3 { top: 36%; left: 12%; width: 60px; height: 60px; animation: drift-c 30s ease-in-out infinite; animation-delay: -8s; }
.float-4 { top: 48%; left: 88%; width: 46px; height: 46px; animation: drift-a 28s ease-in-out infinite; animation-delay: -12s; }
.float-5 { top: 62%; left:  4%; width: 38px; height: 38px; animation: drift-b 24s ease-in-out infinite; animation-delay: -6s; }
.float-6 { top: 72%; left: 74%; width: 50px; height: 50px; animation: drift-c 32s ease-in-out infinite; animation-delay: -10s; }
.float-7 { top: 86%; left: 20%; width: 44px; height: 44px; animation: drift-a 26s ease-in-out infinite; animation-delay: -14s; }
.float-8 { top: 92%; left: 60%; width: 52px; height: 52px; animation: drift-b 30s ease-in-out infinite; animation-delay: -2s; }

@keyframes drift-a {
    0%, 100% { transform: translate(0, 0) rotate(-8deg); }
    50%      { transform: translate(28px, -40px) rotate(8deg); }
}

@keyframes drift-b {
    0%, 100% { transform: translate(0, 0) rotate(6deg); }
    50%      { transform: translate(-32px, -48px) rotate(-10deg); }
}

@keyframes drift-c {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33%      { transform: translate(20px, -30px) rotate(12deg); }
    66%      { transform: translate(-24px, -16px) rotate(-8deg); }
}

/* Profile */
.profile {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f1f2e, #2a2a3d);
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.02),
        0 20px 40px -20px rgba(0, 0, 0, 0.6);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-initials {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--accent);
}

.band-name {
    font-size: clamp(1.6rem, 5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 4px 0 0;
}

.subtitle {
    margin: 0;
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.tagline {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    max-width: 28ch;
}

/* Links */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 18px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.link-button:hover,
.link-button:focus-visible {
    background: var(--surface-hover);
    border-color: var(--accent-soft);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -18px rgba(201, 169, 110, 0.5);
    outline: none;
}

.link-button:active {
    transform: translateY(0);
}

.link-button .icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: var(--accent);
    flex-shrink: 0;
}

.link-button .icon svg {
    width: 100%;
    height: 100%;
}

.link-button .label {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: center;
    padding-right: 24px; /* kompensiert die Icon-Breite links, damit der Text optisch zentriert bleibt */
    line-height: 1.2;
}

.link-button .label-title {
    font-weight: 600;
    letter-spacing: 0.01em;
}

.link-button .label-sub {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* Divider between link groups */
.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 12px 0 2px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--border),
        transparent
    );
}

.divider span {
    white-space: nowrap;
}

/* Termine */
.termine {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.termine .divider {
    margin: 0 0 2px;
}

.termine-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.termin {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.termin-date {
    flex-shrink: 0;
    width: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
    background: var(--accent-soft);
    border-radius: 12px;
    color: var(--accent);
    line-height: 1;
}

.termin-weekday {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
}

.termin-day {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2px 0;
}

.termin-month {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
}

.termin-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.termin-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
}

.termin-location {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.termin-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.termine-all {
    align-self: center;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 6px 10px;
    border-radius: 999px;
    transition: background var(--transition), color var(--transition);
}

.termine-all:hover,
.termine-all:focus-visible {
    background: var(--surface-hover);
    outline: none;
}

/* Footer */
.footer {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: center;
}

.footer p {
    margin: 0;
}

/* Responsive Feinschliff */
@media (max-width: 420px) {
    .container {
        padding: 40px 20px 36px;
        gap: 32px;
    }

    .avatar {
        width: 92px;
        height: 92px;
    }

    .link-button {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .link-button {
        transition: none;
    }

    .link-button:hover,
    .link-button:focus-visible {
        transform: none;
    }

    .bg-decor .float {
        animation: none !important;
    }
}
