/*
Theme Name: Remind
Theme URI: https://remind.at
Author: remind.at
Author URI: https://remind.at
Description: Ein nostalgisch-modernes Theme für Musiker und Archiv-Projekte. Gebaut für remind.at – persönliche Musikwebseite mit Audio-Integration, Band-Geschichten, Studio-Sektion, Discografie und Journal. Enthält Originalfotos aus der Shade-of-Pale-Zeit (Stadtfest 1994). Unterstützt MP3-Upload, Spotify-/Bandcamp-/YouTube-Einbettung, benutzerdefinierte Hintergrundbilder und Demo-Content.
Version: 4.6.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: remind
Tags: music, one-column, custom-background, custom-colors, custom-header, custom-logo, custom-menu, featured-images, block-styles, wide-blocks, editor-style, translation-ready
*/

/* ---------- Design tokens ---------- */
:root {
    --remind-bg: #0E1F26;
    --remind-bg-alt: #173642;
    --remind-surface: rgba(244,237,224,0.04);
    --remind-surface-hover: rgba(244,237,224,0.07);
    --remind-border: rgba(244,237,224,0.12);
    --remind-border-strong: rgba(244,237,224,0.2);
    --remind-text: #F4EDE0;
    --remind-text-muted: #B8B3A8;
    --remind-text-dim: #8C8A87;
    --remind-accent: #D4A373;
    --remind-accent-hover: #E6B989;
    --remind-teal: #1F687C;
    --remind-teal-light: #3B8A9E;
    --remind-serif: 'Fraunces', 'Playfair Display', Georgia, serif;
    --remind-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --remind-radius: 8px;
    --remind-radius-lg: 12px;
    --remind-max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--remind-sans);
    background: var(--remind-bg);
    color: var(--remind-text);
    line-height: 1.75;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('assets/images/pattern-bg.jpg');
    background-size: 512px 512px;
    opacity: 0.35;
    pointer-events: none;
    z-index: -2;
    mix-blend-mode: screen;
}

body.has-custom-bg {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body.has-custom-bg::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(15, 27, 45, 0.88);
    z-index: -1;
}

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

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

h1, h2, h3, h4 {
    font-family: var(--remind-serif);
    font-weight: 400;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

.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;
}

/* ---------- Layout ---------- */
.remind-container {
    max-width: var(--remind-max);
    margin: 0 auto;
    padding: 0 32px;
}

.remind-section {
    padding: 80px 0;
    border-top: 0.5px solid var(--remind-border);
}

.remind-section:first-of-type { border-top: none; }

.remind-eyebrow {
    color: var(--remind-accent);
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

.remind-section-title {
    max-width: 640px;
    margin-bottom: 40px;
}

.remind-section-title em { font-style: italic; color: var(--remind-accent); }

/* ---------- Header & Navigation ---------- */
.remind-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 27, 45, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--remind-border);
}

.remind-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 32px;
    max-width: var(--remind-max);
    margin: 0 auto;
    gap: 24px;
}

.remind-logo a {
    display: inline-block;
    line-height: 0;
}

.remind-logo-img {
    height: 100px;
    width: auto;
    display: block;
    transition: opacity 0.2s;
}

.remind-logo-img:hover { opacity: 0.85; }

.remind-logo .custom-logo {
    height: 100px !important;
    width: auto !important;
    max-height: 100px;
}

@media (max-width: 800px) {
    .remind-logo-img,
    .remind-logo .custom-logo { height: 72px !important; max-height: 72px; }
}

@media (max-width: 480px) {
    .remind-logo-img,
    .remind-logo .custom-logo { height: 56px !important; max-height: 56px; }
}

/* Alte .remind-nav-Regeln wurden durch das neue Menü (.remind-menu / .remind-submenu)
   ersetzt - siehe unten. Keine generische `.remind-nav ul`-Regel mehr,
   weil die sonst die Submenus als Flex-Container aufbauen würde.
   Mobile-Toggle-CSS ist weiter unten im Menü-Bereich definiert. */

/* ---------- Hero ---------- */
.remind-hero {
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.remind-hero-inner { position: relative; z-index: 2; max-width: 720px; }

.remind-hero-tape {
    position: absolute;
    top: 40px; right: -80px;
    opacity: 0.08;
    transform: rotate(-8deg);
    z-index: 1;
    pointer-events: none;
}

.remind-hero-lede {
    font-size: 17px;
    line-height: 1.75;
    color: var(--remind-text-muted);
    max-width: 560px;
    margin-bottom: 36px;
}

/* ---------- Audio player (hero + tracks) ---------- */
.remind-audio-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--remind-surface);
    border: 0.5px solid var(--remind-border);
    border-radius: 999px;
    padding: 10px 24px 10px 10px;
    max-width: 100%;
    flex-wrap: wrap;
}

.remind-play-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--remind-accent);
    border: none;
    color: var(--remind-bg);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}

.remind-play-btn:hover { background: var(--remind-accent-hover); transform: scale(1.05); }
.remind-play-btn svg { margin-left: 2px; }
.remind-play-btn.playing svg path { d: path('M0 0 L4 0 L4 14 L0 14 Z M8 0 L12 0 L12 14 L8 14 Z'); }

.remind-audio-info { font-size: 14px; }
.remind-audio-title { color: var(--remind-text); }
.remind-audio-sub { color: var(--remind-text-dim); font-size: 11px; letter-spacing: 0.5px; margin-top: 2px; text-transform: uppercase; }

.remind-audio-native { display: none; }

/* ---------- Bands grid ---------- */
.remind-bands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.remind-band-card {
    background-color: var(--remind-surface);
    border: 0.5px solid var(--remind-border);
    border-radius: var(--remind-radius-lg);
    padding: 40px 32px;
    transition: transform 0.3s, border-color 0.3s;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.remind-band-card:hover { transform: translateY(-3px); border-color: var(--remind-accent); }

.remind-band-year {
    color: var(--remind-accent);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 500;
}

.remind-band-name { margin: 0 0 14px; font-size: 1.4rem; }

.remind-band-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--remind-text-muted);
    margin-bottom: 20px;
}

.remind-band-footer {
    margin-top: auto;
    border-top: 0.5px solid var(--remind-border);
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.remind-band-link {
    font-size: 13.5px;
    color: var(--remind-accent);
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.remind-band-link:hover {
    color: var(--remind-accent-hover);
    transform: translateX(3px);
}

.remind-band-video-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(212, 163, 115, 0.15);
    border: 1px solid rgba(212, 163, 115, 0.35);
    color: var(--remind-accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 12px;
    line-height: 1;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    cursor: pointer;
}

.remind-band-video-badge:hover {
    background: rgba(212, 163, 115, 0.28);
    border-color: rgba(212, 163, 115, 0.6);
    color: var(--remind-accent-hover);
    transform: scale(1.05);
}

.remind-band-video-badge svg {
    flex-shrink: 0;
    opacity: 0.9;
}

/* Alte .remind-band-members Klasse — bleibt für Abwärtskompatibilität */
.remind-band-members {
    margin-top: auto;
    font-size: 12.5px;
    color: var(--remind-text-dim);
    line-height: 1.8;
    border-top: 0.5px solid var(--remind-border);
    padding-top: 16px;
}

.remind-band-highlight { color: var(--remind-accent); }

/* ---------- Studio section ---------- */
.remind-studio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 800px) { .remind-studio { grid-template-columns: 1fr; gap: 32px; } }

.remind-studio-visual {
    background: var(--remind-bg-alt);
    border-radius: var(--remind-radius-lg);
    padding: 24px;
    border: 0.5px solid var(--remind-border);
    aspect-ratio: 4/3;
    overflow: hidden;
}

.remind-studio-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--remind-radius); }

.remind-studio-text p { font-size: 15.5px; line-height: 1.8; color: var(--remind-text-muted); margin-bottom: 16px; }

.remind-guests {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 0.5px solid var(--remind-border);
    font-size: 13px;
    color: var(--remind-text-dim);
    line-height: 1.8;
}

.remind-guests-label {
    display: block;
    color: var(--remind-accent);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
}

.remind-guest-name { color: var(--remind-accent); }

/* ---------- Discografie / Tracks ---------- */
.remind-tracks { display: grid; gap: 10px; }

.remind-track {
    display: grid;
    grid-template-columns: 44px 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 14px 20px;
    background: var(--remind-surface);
    border-radius: var(--remind-radius);
    border: 0.5px solid var(--remind-border);
    transition: background 0.2s;
}

.remind-track:hover { background: var(--remind-surface-hover); }

.remind-track .remind-play-btn {
    width: 36px; height: 36px;
    background: transparent;
    border: 0.5px solid rgba(212,163,115,0.4);
    color: var(--remind-accent);
}

.remind-track .remind-play-btn:hover { background: var(--remind-accent); color: var(--remind-bg); }

.remind-track-info { min-width: 0; }
.remind-track-title { font-size: 14.5px; color: var(--remind-text); }
.remind-track-meta {
    font-size: 11px;
    color: var(--remind-text-dim);
    margin-top: 3px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.remind-track-year, .remind-track-duration {
    font-size: 12.5px;
    color: var(--remind-text-dim);
    font-variant-numeric: tabular-nums;
}

.remind-track-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.3px;
}

.remind-track-links a {
    color: var(--remind-text-dim);
    padding: 3px 8px;
    border: 0.5px solid var(--remind-border);
    border-radius: 4px;
    transition: all 0.2s;
}

.remind-track-links a:hover { color: var(--remind-accent); border-color: var(--remind-accent); }

@media (max-width: 640px) {
    .remind-track { grid-template-columns: 36px 1fr auto; }
    .remind-track-year { display: none; }
}

/* ---------- Single track / embed wrapper ---------- */
.remind-embed {
    margin: 24px 0;
    border-radius: var(--remind-radius-lg);
    overflow: hidden;
    border: 0.5px solid var(--remind-border);
}

.remind-embed iframe { display: block; width: 100%; border: none; }

/* ---------- Journal ---------- */
.remind-journal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.remind-journal-entry { border-top: 0.5px solid var(--remind-border-strong); padding-top: 24px; }

.remind-journal-date {
    font-size: 11px;
    color: var(--remind-accent);
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.remind-journal-title {
    font-size: 1.3rem;
    margin: 0 0 14px;
    line-height: 1.3;
}

.remind-journal-title a { color: var(--remind-text); }
.remind-journal-title a:hover { color: var(--remind-accent); }

.remind-journal-excerpt {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--remind-text-muted);
}

.remind-read-more {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    color: var(--remind-accent);
    letter-spacing: 0.5px;
}

/* ---------- Single post / page ---------- */
.remind-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 32px;
}

.remind-content p { font-size: 17px; line-height: 1.85; color: var(--remind-text); margin-bottom: 1.3em; font-weight: 300; }

.remind-content h2 { margin-top: 1.8em; }
.remind-content h3 { margin-top: 1.6em; }

.remind-content blockquote {
    border-left: 2px solid var(--remind-accent);
    padding-left: 20px;
    margin: 32px 0;
    font-family: var(--remind-serif);
    font-style: italic;
    font-size: 19px;
    color: var(--remind-text);
}

.remind-content img { border-radius: var(--remind-radius); margin: 24px 0; }

.remind-content figcaption {
    font-size: 12.5px;
    color: var(--remind-text-dim);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

.remind-post-meta {
    font-size: 12px;
    color: var(--remind-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* ---------- Video: Teaser-Kachel + Inline-Player + Grid ---------- */
.remind-video-player-wrap {
    position: relative;
    display: block;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    border-radius: var(--remind-radius-lg);
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
}

.remind-video-player-wrap.remind-video-teaser--small {
    max-width: none;
    margin: 0;
}

.remind-video-player-wrap.is-playing {
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
    border: 1px solid var(--remind-accent);
}

.remind-video-inline-player,
.remind-video-inline-iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    background: #000;
}

.remind-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.remind-video-teaser {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 1px solid var(--remind-border);
    background: transparent;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.remind-video-teaser--small {
    max-width: none; /* grid steuert */
}

.remind-video-grid .remind-video-teaser {
    margin: 0;
}

.remind-video-player-wrap:not(.is-playing):hover {
    transform: translateY(-2px);
    border-color: var(--remind-accent);
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.remind-video-teaser:hover {
    border-color: var(--remind-accent);
}

.remind-video-teaser:focus-visible {
    outline: 2px solid var(--remind-accent);
    outline-offset: 3px;
}

.remind-video-teaser-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.remind-video-teaser-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(14,31,38,0.10), rgba(14,31,38,0.65));
    transition: background 0.2s ease;
}

.remind-video-teaser:hover .remind-video-teaser-overlay {
    background: linear-gradient(rgba(14,31,38,0.05), rgba(14,31,38,0.55));
}

.remind-video-teaser-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(212, 163, 115, 0.95);
    color: var(--remind-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: transform 0.2s ease, background 0.2s ease;
}

.remind-video-teaser--small .remind-video-teaser-play {
    width: 56px;
    height: 56px;
}
.remind-video-teaser--small .remind-video-teaser-play svg {
    width: 20px;
    height: 24px;
}

.remind-video-teaser:hover .remind-video-teaser-play {
    background: var(--remind-accent-hover);
    transform: translate(-50%, -50%) scale(1.08);
}

.remind-video-teaser-label {
    position: absolute;
    bottom: 20px;
    left: 24px;
    right: 24px;
    color: var(--remind-text);
    text-align: left;
    z-index: 2;
    pointer-events: none;
}

.remind-video-teaser--small .remind-video-teaser-label {
    bottom: 14px;
    left: 16px;
    right: 16px;
}

.remind-video-teaser-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--remind-accent);
    font-weight: 500;
    margin-bottom: 4px;
}

.remind-video-teaser-title {
    display: block;
    font-family: var(--remind-serif);
    font-size: 22px;
    line-height: 1.2;
    color: var(--remind-text);
}

.remind-video-teaser--small .remind-video-teaser-title {
    font-size: 17px;
}

.remind-video-teaser-caption {
    text-align: center;
    margin-top: 14px;
    color: var(--remind-text-dim);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 640px) {
    .remind-video-teaser-play { width: 60px; height: 60px; }
    .remind-video-teaser-play svg { width: 22px; height: 26px; }
    .remind-video-teaser-title { font-size: 18px; }
    .remind-video-teaser-label { bottom: 14px; left: 16px; right: 16px; }
}

/* Lightbox */
.remind-video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(4, 10, 14, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.remind-video-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s;
}

.remind-video-lightbox-inner {
    max-width: 1200px;
    width: 100%;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.remind-video-lightbox-media {
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 82vh;
    background: #000;
    border-radius: var(--remind-radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0,0,0,0.8);
    position: relative;
}

.remind-video-lightbox-player,
.remind-video-lightbox-iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.remind-video-lightbox-caption {
    margin-top: 20px;
    color: var(--remind-text-muted);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    min-height: 20px;
}

.remind-video-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: transparent;
    color: var(--remind-text);
    border: 1px solid var(--remind-border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s, border-color 0.2s;
}

.remind-video-lightbox-close:hover {
    opacity: 1;
    border-color: var(--remind-accent);
}

body.remind-video-open {
    overflow: hidden;
}

/* Ghost-Button für "Alle Videos ansehen" */
.remind-btn-ghost {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--remind-border);
    border-radius: 24px;
    color: var(--remind-text-muted);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}
.remind-btn-ghost:hover {
    background: var(--remind-surface-hover);
    border-color: var(--remind-accent);
    color: var(--remind-text);
}

/* ---------- Pager / Paginierung ---------- */
.remind-pager {
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.remind-pager-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    background: var(--remind-surface);
    border: 1px solid var(--remind-border);
    border-radius: 6px;
    color: var(--remind-text-muted);
    text-decoration: none;
    transition: all 0.15s ease;
}

.remind-pager-link:hover {
    background: var(--remind-surface-hover);
    border-color: var(--remind-accent);
    color: var(--remind-text);
}

.remind-pager-link.is-active {
    background: var(--remind-accent);
    border-color: var(--remind-accent);
    color: var(--remind-bg);
    cursor: default;
}

/* ---------- Footer ---------- */
.remind-footer {
    padding: 40px 0;
    border-top: 0.5px solid var(--remind-border);
    margin-top: 40px;
}

.remind-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: var(--remind-text-dim);
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 32px;
    max-width: var(--remind-max);
    margin: 0 auto;
}

.remind-footer-links { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }

/* ---------- WordPress-required classes ---------- */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12.5px; color: var(--remind-text-dim); text-align: center; margin-top: 6px; font-style: italic; }
.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
    height: 1px; margin: -1px; overflow: hidden; padding: 0;
    position: absolute !important; width: 1px; word-wrap: normal !important;
}
.sticky { }
.bypostauthor { }
.gallery-caption { }

/* ---------- Comments ---------- */
.remind-comments { max-width: 720px; margin: 40px auto 60px; padding: 0 32px; }
.remind-comments h3 { font-size: 1.3rem; margin-bottom: 24px; }
.remind-comments ol, .remind-comments ul { list-style: none; padding: 0; }
.remind-comments .comment { border-top: 0.5px solid var(--remind-border); padding: 20px 0; }
.remind-comments .comment-author { font-size: 14px; color: var(--remind-accent); margin-bottom: 4px; }
.remind-comments .comment-meta { font-size: 11px; color: var(--remind-text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.remind-comments textarea, .remind-comments input[type="text"], .remind-comments input[type="email"], .remind-comments input[type="url"] {
    width: 100%; padding: 10px 14px; background: var(--remind-surface); border: 0.5px solid var(--remind-border);
    color: var(--remind-text); border-radius: var(--remind-radius); font-family: var(--remind-sans); font-size: 14px; margin-bottom: 12px;
}
.remind-comments textarea:focus, .remind-comments input:focus { outline: none; border-color: var(--remind-accent); }
.remind-comments input[type="submit"], .remind-btn {
    background: var(--remind-accent); color: var(--remind-bg); border: none;
    padding: 10px 24px; border-radius: var(--remind-radius); cursor: pointer; font-weight: 500;
    letter-spacing: 0.3px; font-size: 14px; transition: background 0.2s;
}
.remind-comments input[type="submit"]:hover, .remind-btn:hover { background: var(--remind-accent-hover); }

/* ---------- Pagination ---------- */
.remind-pagination { max-width: 720px; margin: 40px auto; padding: 0 32px; display: flex; justify-content: space-between; font-size: 13px; }
.remind-pagination a { color: var(--remind-accent); }

/* ---------- Blog archive ---------- */
.remind-archive-header { padding: 50px 0 20px; text-align: center; }
.remind-archive-header h1 { margin-bottom: 8px; }
.remind-archive-header p { color: var(--remind-text-muted); }

/* ---------- Now playing bar (optional) ---------- */
.remind-now-playing {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(15, 27, 45, 0.95);
    backdrop-filter: blur(16px);
    border-top: 0.5px solid var(--remind-border);
    padding: 12px 32px;
    display: none;
    align-items: center;
    gap: 16px;
    z-index: 200;
}

.remind-now-playing.active { display: flex; }
.remind-now-playing .remind-audio-info { flex: 1; }
.remind-now-playing audio { flex: 2; max-width: 500px; }

/* ---------- Mobile-Optimierungen ---------- */
@media (max-width: 800px) {
    /* Container-Padding verringern */
    .remind-container { padding: 0 20px; }

    /* Sektionen weniger Abstand */
    .remind-section { padding: 60px 0; }
    .remind-section-title { font-size: 1.8rem; }

    /* Hero kompakter */
    .remind-hero { padding: 60px 0 50px; }
    .remind-hero h1 { font-size: 2.2rem; }
    .remind-hero-lede { font-size: 16px; margin-bottom: 28px; }
    .remind-hero-tape { display: none; }

    /* Band-Karten kompakter */
    .remind-band-card { padding: 28px 24px; min-height: 280px; }
    .remind-band-name { font-size: 1.25rem; }
    .remind-band-desc { font-size: 14px; }

    /* Track-Liste Mobile-freundlich */
    .remind-track {
        grid-template-columns: 40px 1fr auto;
        gap: 10px;
        padding: 12px 14px;
    }
    .remind-track-year { display: none; }
    .remind-track-title { font-size: 14.5px; }
    .remind-track-meta { font-size: 12px; }

    /* Journal-Einträge einspaltig */
    .remind-journal { grid-template-columns: 1fr; gap: 24px; }

    /* Footer ggf. umbrechen */
    .remind-footer-inner {
        flex-direction: column;
        gap: 14px;
        text-align: center;
        padding: 24px 20px;
    }
    .remind-footer-links { justify-content: center; flex-wrap: wrap; }

    /* Archiv-Header kompakter */
    .remind-archive-header { padding: 36px 0 14px; }
    .remind-archive-header h1 { font-size: 2rem; }

    /* Video-Teaser etwas kleiner */
    .remind-video-teaser-title { font-size: 17px; }

    /* Video-Lightbox besser auf Handy */
    .remind-video-lightbox { padding: 16px; }
    .remind-video-lightbox-close { top: 10px; right: 14px; width: 38px; height: 38px; }

    /* Paginierung umbrechen */
    .remind-pager { justify-content: center; }
}

@media (max-width: 480px) {
    /* Noch kompakter auf sehr kleinen Geräten */
    .remind-section { padding: 48px 0; }
    .remind-section-title { font-size: 1.55rem; }

    .remind-hero { padding: 40px 0 36px; }
    .remind-hero h1 { font-size: 1.8rem; line-height: 1.2; }
    .remind-hero-lede { font-size: 15px; }

    .remind-band-card { padding: 24px 20px; min-height: 260px; }
    .remind-band-name { font-size: 1.15rem; }
    .remind-band-desc { font-size: 13.5px; line-height: 1.6; }
    .remind-band-footer { padding-top: 14px; flex-wrap: wrap; gap: 10px; }
    .remind-band-link { font-size: 13px; }

    .remind-track {
        grid-template-columns: 36px 1fr auto;
        padding: 10px 12px;
    }
    .remind-track-duration { font-size: 12px; }

    .remind-archive-header h1 { font-size: 1.65rem; }

    /* Header Logo noch kleiner */
    .remind-header-inner { padding: 10px 20px; }

    /* Video-Teaser-Label nicht zu groß auf Handy */
    .remind-video-teaser-title { font-size: 15px; }
    .remind-video-teaser-eyebrow { font-size: 10px; letter-spacing: 2px; }
    .remind-video-teaser-label { bottom: 10px; left: 12px; right: 12px; }
}

/* ---------- Foto-Galerie ---------- */
.remind-photo-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 0 8px;
    padding: 14px 0;
}

.remind-photo-cat {
    display: inline-block;
    padding: 7px 16px;
    font-size: 12.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--remind-text-muted);
    border: 0.5px solid var(--remind-border);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.remind-photo-cat:hover {
    color: var(--remind-text);
    border-color: var(--remind-accent);
    background: rgba(212, 163, 115, 0.08);
}

.remind-photo-cat.is-active {
    color: var(--remind-bg);
    background: var(--remind-accent);
    border-color: var(--remind-accent);
}

.remind-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.remind-photo-item {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    cursor: zoom-in;
    background: var(--remind-bg-alt);
}

.remind-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.remind-photo-item:hover img {
    transform: scale(1.06);
}

.remind-photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px 14px;
    background: linear-gradient(rgba(0,0,0,0), rgba(14,31,38,0.85));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.remind-photo-item:hover .remind-photo-overlay {
    opacity: 1;
}

.remind-photo-title {
    font-family: var(--remind-serif);
    font-size: 15px;
    color: var(--remind-text);
    line-height: 1.3;
    margin-bottom: 4px;
}

.remind-photo-year {
    font-size: 10px;
    color: var(--remind-accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Photo-Lightbox */
.remind-photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(4, 10, 14, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.remind-photo-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s;
}

.remind-photo-lightbox-inner {
    max-width: 1400px;
    max-height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.remind-photo-lightbox-img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 40px 120px rgba(0,0,0,0.8);
}

.remind-photo-lightbox-caption {
    margin-top: 16px;
    color: var(--remind-text-muted);
    font-size: 13px;
    letter-spacing: 1px;
    text-align: center;
}

.remind-photo-lightbox-close,
.remind-photo-lightbox-prev,
.remind-photo-lightbox-next {
    position: absolute;
    width: 48px;
    height: 48px;
    background: transparent;
    color: var(--remind-text);
    border: 1px solid var(--remind-border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0.6;
    transition: opacity 0.2s, border-color 0.2s, background 0.2s;
}

.remind-photo-lightbox-close:hover,
.remind-photo-lightbox-prev:hover,
.remind-photo-lightbox-next:hover {
    opacity: 1;
    border-color: var(--remind-accent);
    background: rgba(212, 163, 115, 0.1);
}

.remind-photo-lightbox-close {
    top: 24px; right: 28px;
}

.remind-photo-lightbox-prev {
    left: 28px; top: 50%; transform: translateY(-50%);
}

.remind-photo-lightbox-next {
    right: 28px; top: 50%; transform: translateY(-50%);
}

body.remind-photo-open {
    overflow: hidden;
}

@media (max-width: 800px) {
    .remind-photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 6px;
    }
    .remind-photo-lightbox { padding: 16px; }
    .remind-photo-lightbox-close { top: 12px; right: 14px; width: 40px; height: 40px; }
    .remind-photo-lightbox-prev,
    .remind-photo-lightbox-next { width: 40px; height: 40px; }
    .remind-photo-lightbox-prev { left: 12px; }
    .remind-photo-lightbox-next { right: 12px; }
    .remind-photo-categories { gap: 6px; }
    .remind-photo-cat { padding: 6px 12px; font-size: 11px; }
}

/* ---------- Portal-Sektion ---------- */
.remind-portal-section {
    padding-top: 60px;
}

.remind-portal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.remind-portal-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px 24px;
    background: var(--remind-surface);
    border: 0.5px solid var(--remind-border);
    border-radius: var(--remind-radius-md);
    text-decoration: none;
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
    min-height: 190px;
}

.remind-portal-card:hover {
    transform: translateY(-2px);
    border-color: var(--remind-accent);
    background: rgba(212, 163, 115, 0.04);
}

.remind-portal-num {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--remind-accent);
    font-weight: 500;
    margin-bottom: 10px;
}

.remind-portal-title {
    display: block;
    font-family: var(--remind-serif);
    font-size: 20px;
    color: var(--remind-text);
    margin-bottom: 12px;
}

.remind-portal-desc {
    display: block;
    color: var(--remind-text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.remind-portal-link {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--remind-accent);
    border-top: 0.5px solid var(--remind-border);
    padding-top: 12px;
    margin-top: auto;
}

@media (max-width: 800px) {
    .remind-portal-grid { grid-template-columns: 1fr; gap: 12px; }
    .remind-portal-card { min-height: auto; padding: 22px 20px; }
}

/* ---------- "Zuletzt hinzugefügt"-Streifen ---------- */
.remind-recent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.remind-recent-card {
    position: relative;
    display: block;
    aspect-ratio: 1;
    border-radius: var(--remind-radius-md);
    overflow: hidden;
    text-decoration: none;
    background: var(--remind-bg-alt);
    transition: transform 0.2s, border-color 0.2s;
    border: 0.5px solid var(--remind-border);
}

.remind-recent-card:hover:not(.remind-recent-placeholder) {
    transform: translateY(-2px);
    border-color: var(--remind-accent);
}

.remind-recent-placeholder {
    cursor: default;
}

.remind-recent-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remind-recent-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(14,31,38,0.85));
    pointer-events: none;
}

.remind-recent-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 163, 115, 0.9);
    color: var(--remind-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    z-index: 2;
}

.remind-recent-meta {
    position: absolute;
    bottom: 10px;
    left: 12px;
    right: 12px;
    z-index: 2;
}

.remind-recent-eyebrow {
    display: block;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--remind-accent);
    font-weight: 500;
    margin-bottom: 3px;
}

.remind-recent-title {
    display: block;
    font-family: var(--remind-serif);
    font-size: 13px;
    color: var(--remind-text);
    line-height: 1.25;
}

.remind-recent-placeholder-badge {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(212, 163, 115, 0.2);
    color: var(--remind-accent);
    border-radius: 8px;
}

@media (max-width: 800px) {
    .remind-recent-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ---------- Foto-Platzhalter ---------- */
.remind-photo-placeholder {
    position: relative;
    overflow: hidden;
}

.remind-photo-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(244,237,224,0.08), transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(212,163,115,0.06), transparent 60%);
    pointer-events: none;
}

/* ---------- Album-Karten (Archiv) ---------- */
.remind-album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.remind-album-card {
    display: block;
    background: var(--remind-surface);
    border: 0.5px solid var(--remind-border);
    border-radius: var(--remind-radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.remind-album-card:hover {
    transform: translateY(-3px);
    border-color: var(--remind-accent);
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
}

.remind-album-cover {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    background-color: var(--remind-bg-alt);
}

.remind-album-cover-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--remind-text-dim);
}

.remind-album-info {
    padding: 22px 24px 26px;
}

.remind-album-meta {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--remind-accent);
    font-weight: 500;
    margin-bottom: 10px;
}

.remind-album-title {
    font-family: var(--remind-serif);
    font-size: 1.3rem;
    color: var(--remind-text);
    margin: 0 0 10px;
    line-height: 1.3;
}

.remind-album-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--remind-text-muted);
    margin: 0;
}

@media (max-width: 800px) {
    .remind-album-grid { grid-template-columns: 1fr; gap: 20px; }
    .remind-album-info { padding: 18px 20px 22px; }
    .remind-album-title { font-size: 1.15rem; }
}

/* ---------- Foto-Paginierung im Album ---------- */
.remind-photo-page-info {
    text-align: center;
    color: var(--remind-text-dim);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

.remind-photo-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.remind-photo-pager a,
.remind-photo-pager span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--remind-text-muted);
    text-decoration: none;
    border-radius: 18px;
    transition: all 0.2s;
}

.remind-photo-pager .remind-pager-num:hover,
.remind-photo-pager .remind-pager-prev:hover,
.remind-photo-pager .remind-pager-next:hover {
    background: rgba(212, 163, 115, 0.12);
    color: var(--remind-text);
}

.remind-photo-pager .remind-pager-current {
    background: var(--remind-accent);
    color: var(--remind-bg);
    font-weight: 600;
}

.remind-photo-pager .remind-pager-ellipsis {
    color: var(--remind-text-dim);
    padding: 0 4px;
    min-width: auto;
}

.remind-photo-pager .remind-pager-prev,
.remind-photo-pager .remind-pager-next {
    font-size: 18px;
    color: var(--remind-accent);
    margin: 0 8px;
}

@media (max-width: 640px) {
    .remind-photo-pager a,
    .remind-photo-pager span {
        min-width: 30px;
        height: 30px;
        font-size: 12.5px;
        padding: 0 8px;
    }
}

/* ---------- Video-Karten im Archiv (wie Alben) ---------- */
.remind-video-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.remind-video-card {
    display: block;
    background: var(--remind-surface);
    border: 0.5px solid var(--remind-border);
    border-radius: var(--remind-radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.remind-video-card:hover {
    transform: translateY(-3px);
    border-color: var(--remind-accent);
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
}

.remind-video-card-cover {
    position: relative;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-color: #000;
    overflow: hidden;
}

.remind-video-card-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(14,31,38,0.6));
    transition: opacity 0.25s;
}

.remind-video-card:hover .remind-video-card-cover::after {
    opacity: 0.4;
}

.remind-video-card-cover-empty {
    background: var(--remind-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.remind-video-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(212, 163, 115, 0.92);
    color: var(--remind-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transition: transform 0.25s, background 0.25s;
}

.remind-video-card:hover .remind-video-card-play {
    background: var(--remind-accent-hover);
    transform: translate(-50%, -50%) scale(1.1);
}

.remind-video-card-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(14, 31, 38, 0.88);
    color: var(--remind-text);
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 2;
    letter-spacing: 0.3px;
}

.remind-video-card-type {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(212, 163, 115, 0.92);
    color: var(--remind-bg);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 2;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.remind-video-card-info {
    padding: 18px 22px 22px;
}

.remind-video-card-meta {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--remind-accent);
    font-weight: 500;
    margin-bottom: 8px;
    min-height: 11px;
}

.remind-video-card-title {
    font-family: var(--remind-serif);
    font-size: 1.15rem;
    color: var(--remind-text);
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 800px) {
    .remind-video-card-grid { grid-template-columns: 1fr; gap: 18px; }
    .remind-video-card-play { width: 52px; height: 52px; }
    .remind-video-card-play svg { width: 18px; height: 22px; }
    .remind-video-card-info { padding: 16px 18px 20px; }
    .remind-video-card-title { font-size: 1.05rem; }
}

@media (max-width: 480px) {
    .remind-video-card-play { width: 46px; height: 46px; }
    .remind-video-card-play svg { width: 16px; height: 20px; }
    .remind-video-card-duration, .remind-video-card-type { font-size: 10px; padding: 2px 6px; }
}

/* ========================================================
   Hauptmenü mit Dropdowns (Desktop + Mobile)
   ======================================================== */

.remind-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.remind-menu > li {
    position: relative;
    margin: 0;
}

.remind-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-family: var(--remind-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--remind-text-muted);
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.remind-menu > li > a:hover,
.remind-menu > li.is-active > a {
    color: var(--remind-accent);
    background: rgba(212, 163, 115, 0.08);
}

.remind-menu > li.is-active > a {
    color: var(--remind-text);
}

.remind-chevron {
    font-size: 9px;
    margin-top: 1px;
    opacity: 0.6;
    transition: transform 0.2s;
}

.remind-has-sub:hover .remind-chevron,
.remind-has-sub:focus-within .remind-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown (Submenü) - IMMER senkrecht, override Flex vom Parent */
.remind-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    min-width: 260px;
    background: #0a1418;
    border: 0.5px solid var(--remind-border);
    border-radius: 6px;
    padding: 12px 0;
    margin: 8px 0 0;
    list-style: none;
    box-shadow: 0 20px 60px -10px rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 1000;
}

.remind-has-sub:hover > .remind-submenu,
.remind-has-sub:focus-within > .remind-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.remind-submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

/* WICHTIG: Jedes Submenu-Listen-Element wird voll breit dargestellt (block),
   damit sie untereinander und nicht nebeneinander stehen. */
.remind-submenu > li {
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 0;
    flex: none !important;
}

.remind-submenu a {
    display: block;
    padding: 9px 20px;
    font-family: var(--remind-sans);
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: none;              /* nicht mehr Uppercase, damit lesbarer */
    color: var(--remind-text-muted);
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}

.remind-submenu a:hover {
    color: var(--remind-accent);
    background: rgba(212, 163, 115, 0.08);
}

.remind-submenu a strong {
    color: var(--remind-text);
    font-weight: 500;
}

.remind-submenu-header {
    display: block !important;
    width: 100%;
    padding: 12px 20px 6px;
    font-family: var(--remind-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--remind-text-dim);
    border-top: 0.5px solid var(--remind-border);
    margin-top: 8px;
    flex: none !important;
}

.remind-submenu > li:first-child.remind-submenu-header,
.remind-submenu > li.remind-submenu-header:first-child {
    border-top: none;
    margin-top: 0;
}

/* Nach "Alle Songs"-Eintrag: visuellen Abstand für den ersten Header */
.remind-submenu > li:first-child + li.remind-submenu-header {
    margin-top: 4px;
}

/* Mobile Burger-Icon */
.remind-mobile-toggle {
    display: none;
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.remind-mobile-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--remind-text);
    border-radius: 1px;
    transition: transform 0.25s, opacity 0.25s;
}

.remind-mobile-toggle[aria-expanded="true"] .remind-mobile-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.remind-mobile-toggle[aria-expanded="true"] .remind-mobile-toggle-bar:nth-child(2) {
    opacity: 0;
}
.remind-mobile-toggle[aria-expanded="true"] .remind-mobile-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ----- Mobile Breakpoint ----- */
@media (max-width: 900px) {
    .remind-mobile-toggle {
        display: flex;
    }

    .remind-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--remind-bg);
        border-top: 0.5px solid var(--remind-border);
        border-bottom: 0.5px solid var(--remind-border);
        padding: 10px 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .remind-nav.is-open {
        display: block;
    }

    .remind-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .remind-menu > li {
        border-bottom: 0.5px solid var(--remind-border);
    }

    .remind-menu > li:last-child {
        border-bottom: none;
    }

    .remind-menu > li > a {
        padding: 14px 24px;
        font-size: 14px;
        border-radius: 0;
        justify-content: space-between;
        width: 100%;
    }

    .remind-menu > li.is-active > a {
        background: rgba(212, 163, 115, 0.05);
    }

    .remind-has-sub > a .remind-chevron {
        transition: transform 0.25s;
    }

    .remind-has-sub.is-mobile-open > a .remind-chevron {
        transform: rotate(180deg);
    }

    /* Submenü auf Mobile: klappt auf, kein Hover */
    .remind-submenu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.25);
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 6px 0 10px;
        box-shadow: none;
    }

    .remind-has-sub.is-mobile-open > .remind-submenu {
        display: block;
    }

    .remind-submenu a {
        padding: 10px 36px;
        font-size: 14px;
    }

    .remind-submenu-header {
        padding: 14px 36px 6px;
        border-top: 0.5px solid var(--remind-border);
    }
}

@media (max-width: 480px) {
    .remind-logo-img { height: 36px !important; }
    .remind-header-inner { padding: 10px 16px; }
}
