/* LOVE THE RELEASE – Admin & öffentliche Basis-Styles */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --font-sans: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
    --radius: 0;
    --shadow: none;
    --admin-bg: #F6F1E8;
    --admin-bg-wash:
        radial-gradient(circle at 80% 8%, rgba(138, 0, 255, 0.10), transparent 34%),
        radial-gradient(circle at 12% 18%, rgba(255, 46, 136, 0.055), transparent 28%),
        linear-gradient(180deg, #fbf8f1 0%, #f6f1e8 48%, #f3eef8 100%);
    --admin-card: rgba(255, 255, 255, 0.45);
    --admin-card-solid: #fbf8f1;
    --admin-text: #111111;
    --admin-muted: #555555;
    --admin-border: rgba(17, 17, 17, 0.18);
    --admin-primary: #111111;
    --admin-primary-hover: #FF2E88;
    --admin-danger: #b42318;
    --success: #1f6b45;
    --error: #b42318;
}

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

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--admin-text);
    background: var(--admin-bg);
    background-image: var(--admin-bg-wash);
    background-attachment: fixed;
    line-height: 1.5;
}

a { color: inherit; }

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

/* Admin */

.admin-body {
    min-height: 100vh;
    background: transparent;
}

.admin-header,
.admin-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem;
}

.admin-main--wide,
.admin-header {
    max-width: 1280px;
}

.admin-card--inline {
    max-width: none;
    margin: 0 0 1.25rem;
}

.admin-card--system {
    max-width: 720px;
}

.admin-note {
    margin: 0 0 1rem;
    color: var(--admin-muted);
    font-size: 0.95rem;
}

.admin-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
    align-items: end;
    margin-bottom: 1.25rem;
    padding: 1rem;
    border: 1px solid var(--admin-border);
    background: var(--admin-card);
}

.admin-filters__search {
    flex: 1 1 16rem;
}

.admin-filters__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.inline-form {
    display: inline;
}

button.linkish {
    border: 0;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}

button.linkish:hover {
    color: var(--admin-primary-hover);
}

.muted {
    color: var(--admin-muted);
    font-size: 0.85em;
}

.system-dl {
    margin: 0;
    display: grid;
    gap: 1rem;
}

.system-dl > div {
    display: grid;
    gap: 0.2rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--admin-border);
}

.system-dl > div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.system-dl dt {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--admin-muted);
}

.system-dl dd {
    margin: 0;
    font-size: 1rem;
}

.badge-disabled { background: #fff4e5; color: #9a3412; }
.badge-expired { background: #f3f4f6; color: #4b5563; }
.badge-deleted { background: #fdecec; color: var(--error); }

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.admin-card {
    max-width: 520px;
    margin: 4rem auto;
    padding: 2rem;
    background: var(--admin-card);
    border-radius: 0;
    border: 1px solid var(--admin-border);
    box-shadow: none;
}

.brand-kicker {
    margin: 0 0 0.25rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--admin-muted);
}

h1 {
    margin: 0 0 0.75rem;
    font-size: 1.75rem;
    line-height: 1.2;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

.form-wide {
    max-width: 900px;
    margin: 0 auto;
    background: var(--admin-card);
    padding: 1.5rem;
    border-radius: 0;
    border: 1px solid var(--admin-border);
    box-shadow: none;
}

.form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-row-links {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.92rem;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="date"],
input[type="file"],
select,
textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--admin-border);
    border-radius: 0;
    font: inherit;
    background: #FFFCF7;
}

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

fieldset {
    border: 1px solid var(--admin-border);
    border-radius: 0;
    padding: 1rem 1.25rem 1.25rem;
    margin: 0;
}

legend {
    padding: 0 0.5rem;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: 0;
    border: 1.5px solid transparent;
    font: inherit;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
}

.btn-primary {
    background: var(--admin-primary);
    color: #fff;
}

.btn-primary:hover { background: var(--admin-primary-hover); }

.btn-ghost {
    border-color: var(--admin-text);
    background: transparent;
    color: var(--admin-text);
}

.btn-ghost:hover {
    background: var(--admin-text);
    color: #fff;
}

.btn-danger {
    background: var(--admin-danger);
    color: #fff;
}

.form-inline {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.alert {
    padding: 0.85rem 1rem;
    border-radius: 0;
    border: 1px solid var(--admin-border);
    margin-bottom: 1rem;
}

.alert-success {
    background: #e8f8ef;
    color: var(--success);
}

.alert-error {
    background: #fdecec;
    color: var(--error);
}

.table-wrap {
    overflow-x: auto;
    background: var(--admin-card);
    border-radius: 0;
    border: 1px solid var(--admin-border);
    box-shadow: none;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

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

.admin-table th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--admin-muted);
}

.actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.actions a { color: var(--admin-primary); }
.actions a.danger { color: var(--admin-danger); }

.badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 0;
    border: 1px solid currentColor;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-draft { background: #eef1f6; color: #4b5563; }
.badge-published { background: #e8f8ef; color: var(--success); }
.badge-active { background: #e8f8ef; color: var(--success); }
.badge-invited { background: #eef0ff; color: #3b4bb8; }
.badge-blocked { background: #fdecec; color: var(--error); }

.field-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--admin-muted);
}

.preview-thumb {
    margin-top: 0.5rem;
    max-width: 120px;
    border-radius: 8px;
}

.preview-banner {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.65rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    background: #fff3cd;
    color: #7a5b00;
    border-bottom: 1px solid #f0d98c;
}

/* Öffentliche Release-Seite – Basislayout */

.release-page {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
}

.release-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}

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

.release-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem);
    gap: 0.75rem;
}

.release-hero__artist {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
}

.release-hero__title {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.05;
}

.release-hero__meta {
    margin: 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0.8;
}

.release-hero__cta {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 0.5rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.release-main {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.25rem 3rem;
}

.release-section {
    margin-bottom: 2.5rem;
}

.release-section h2 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.streaming-grid,
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.stream-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid currentColor;
}

.stream-btn__icon {
    font-size: 0.9rem;
    opacity: 0.8;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
}

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

.release-text {
    font-size: 1.05rem;
    line-height: 1.7;
}

.press-block {
    display: grid;
    gap: 1.5rem;
}

.press-photo img {
    border-radius: var(--radius);
    max-width: 360px;
}

.release-footer {
    padding: 2rem 1.25rem;
    text-align: center;
    font-size: 0.9rem;
}

.release-footer__brand {
    margin: 0 0 0.75rem;
    opacity: 0.75;
}

.release-footer__brand a {
    color: inherit;
}

.release-footer__legal {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.release-footer__legal a {
    color: inherit;
    opacity: 0.85;
}

@media (max-width: 800px) {
    .release-hero {
        grid-template-columns: 1fr;
    }

    .release-hero__cover {
        max-height: 55vh;
        overflow: hidden;
    }
}
