/* RMS JazzOrchester Köln - Modern Dark Theme */

/* ============================================
   FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;800&family=Playfair+Display:wght@400;600&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --night: #1A1A1A;
    --ink: #0E1420;
    --gold: #D4AF37;
    --offwhite: #F5F5F5;
    --electric: #FF8C00;
    
    /* Typography */
    --font-sans: 'Montserrat', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', ui-serif, Georgia, serif;
    
    /* Shadows */
    --shadow-glow: 0 0 0 1px rgba(212,175,55,.25), 0 12px 60px rgba(0,0,0,.55);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--night);
    color: var(--offwhite);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(212, 175, 55, 0.4);
    color: var(--offwhite);
}

/* ============================================
   BACKGROUND LAYERS
   ============================================ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -10;
    background: linear-gradient(to bottom, var(--ink), var(--night) 50%, var(--night));
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -9;
    opacity: 0.2;
    background-image: 
        radial-gradient(circle at 20% 10%, rgba(212,175,55,.35), transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(255,140,0,.25), transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(245,245,245,.08), transparent 55%);
    pointer-events: none;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(26, 26, 26, 0.6);
    border-bottom: 1px solid rgba(245, 245, 245, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--offwhite);
}

.logo-dot {
    display: inline-block;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 24px rgba(212,175,55,.65);
}

.logo-text {
    font-weight: 800;
    letter-spacing: 0.025em;
    font-size: 1rem;
}

nav {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    font-size: 0.875rem;
}

nav a {
    color: rgba(245, 245, 245, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

nav a:hover {
    color: var(--offwhite);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: var(--night);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--electric);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--offwhite);
    font-weight: 700;
    border: 1px solid rgba(245, 245, 245, 0.2);
    border-radius: 9999px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    border-color: rgba(245, 245, 245, 0.4);
    background: rgba(245, 245, 245, 0.05);
}

@media (min-width: 768px) {
    nav {
        display: block;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: stretch;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: grayscale(100%);
}

.hero-overlay-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(26,26,26,0.4), 
        rgba(26,26,26,0.7) 50%, 
        var(--night));
}

.hero-overlay-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(26,26,26,0.8),
        transparent 50%,
        rgba(26,26,26,0.7));
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1rem;
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    width: 100%;
}

.hero-main h1 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 0.75rem;
}

.hero-subtitle {
    color: rgba(245, 245, 245, 0.75);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.hero-description {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    font-family: var(--font-serif);
    color: rgba(245, 245, 245, 0.85);
    line-height: 1.8;
    max-width: 48rem;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-cta a {
    padding: 0.75rem 1.5rem;
}

.hero-tags {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(245, 245, 245, 0.15);
    background: rgba(245, 245, 245, 0.05);
    font-size: 0.75rem;
    color: rgba(245, 245, 245, 0.75);
}

.hero-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(245, 245, 245, 0.1);
    background: rgba(26, 26, 26, 0.55);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.hero-card-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0.75rem;
}

.hero-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: floaty 6s ease-in-out infinite;
}

.hero-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 0.25rem;
}

.hero-card-subtitle {
    font-size: 0.875rem;
    color: rgba(245, 245, 245, 0.7);
}

.hero-card-links {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
}

.hero-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(245, 245, 245, 0.8);
}

.hero-card-link a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.hero-card-link a:hover {
    color: var(--electric);
}

.divider {
    height: 1px;
    background: rgba(245, 245, 245, 0.1);
}

.hero-card-footer {
    margin-top: 1.5rem;
    font-family: var(--font-serif);
    color: rgba(245, 245, 245, 0.75);
    line-height: 1.8;
}

.scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
}

.scroll-hint-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.scroll-hint a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(245, 245, 245, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.scroll-hint a:hover {
    color: var(--offwhite);
}

.scroll-line {
    width: 3.5rem;
    height: 1px;
    background: rgba(245, 245, 245, 0.25);
}

@media (min-width: 768px) {
    .hero-content {
        padding: 6rem 1rem;
    }
    
    .hero-grid {
        grid-template-columns: 7fr 5fr;
    }
    
    .hero-main h1 {
        font-size: 3.75rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .hero-cta {
        flex-direction: row;
        align-items: center;
    }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
}

.section-description {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: rgba(245, 245, 245, 0.75);
    line-height: 1.8;
    max-width: 48rem;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 1rem;
    }
    
    .section-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   CARDS & GRIDS
   ============================================ */
.grid {
    display: grid;
    gap: 1.5rem;
}

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

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(245, 245, 245, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-text {
    color: rgba(245, 245, 245, 0.75);
    line-height: 1.8;
}

/* ============================================
   TERMIN CARDS (GIG GUIDE)
   ============================================ */
.termin-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(245, 245, 245, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.termin-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-left-color: var(--electric);
}

.termin-date-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.date-box {
    background: var(--gold);
    color: var(--night);
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    min-width: 5rem;
    flex-shrink: 0;
}

.date-box .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-box .month {
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
    font-weight: 600;
}

.termin-info {
    flex: 1;
}

.termin-time {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold);
}

.termin-location {
    font-size: 0.875rem;
    color: rgba(245, 245, 245, 0.7);
    margin-top: 0.25rem;
}

.termin-description {
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.termin-link {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: var(--gold);
    color: var(--night);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.termin-link:hover {
    background: var(--electric);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    border: 1px solid rgba(245, 245, 245, 0.1);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   STATS / COUNTERS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: rgba(245, 245, 245, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: rgba(245, 245, 245, 0.75);
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(245, 245, 245, 0.1);
    border-radius: 1rem;
    color: var(--offwhite);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(26, 26, 26, 0.8);
}

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

/* ============================================
   MESSAGES
   ============================================ */
.message {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.message-success {
    background: rgba(34, 197, 94, 0.1);
    color: rgb(134, 239, 172);
    border-left: 4px solid rgb(34, 197, 94);
}

.message-error {
    background: rgba(239, 68, 68, 0.1);
    color: rgb(252, 165, 165);
    border-left: 4px solid rgb(239, 68, 68);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    border-top: 1px solid rgba(245, 245, 245, 0.1);
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(12px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-title {
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.footer-text {
    font-size: 0.875rem;
    color: rgba(245, 245, 245, 0.7);
    line-height: 1.8;
}

.footer-links {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(245, 245, 245, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--offwhite);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(245, 245, 245, 0.1);
    font-size: 0.75rem;
    color: rgba(245, 245, 245, 0.55);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes floaty {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.no-data {
    text-align: center;
    padding: 4rem 1.5rem;
    color: rgba(245, 245, 245, 0.5);
    font-style: italic;
}

/* ============================================
   ACCESSIBILITY TOGGLE
   ============================================ */
.accessibility-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}

#accessible-mode-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(245, 245, 245, 0.2);
    border-radius: 9999px;
    color: var(--offwhite);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#accessible-mode-toggle:hover {
    background: rgba(26, 26, 26, 1);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

#accessible-mode-toggle.active {
    background: var(--gold);
    color: var(--night);
    border-color: var(--gold);
}

#accessible-mode-toggle svg {
    flex-shrink: 0;
}

/* ============================================
   MOOD WHEEL SECTION (Signature Feature)
   ============================================ */
.mood-wheel-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.05) 0%,
        transparent 50%,
        rgba(255, 140, 0, 0.05) 100%
    );
}

.mood-wheel-container {
    max-width: 900px;
    margin: 0 auto;
}

.mood-wheel-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mood-wheel-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .mood-wheel-content {
        grid-template-columns: 450px 1fr;
        gap: 3rem;
    }

    .mood-wheel-container {
        max-width: 1100px;
    }
}

.mood-wheel-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--electric));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mood-wheel-subtitle {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: rgba(245, 245, 245, 0.75);
    margin-bottom: 1.5rem;
}

#mood-wheel {
    margin: 1rem auto;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 0.5rem;
}

.mood-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(245, 245, 245, 0.1);
    border-radius: 1.5rem;
    backdrop-filter: blur(12px);
}

.mood-result-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.mood-result-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: rgba(245, 245, 245, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mood-result-spin {
    padding: 0.75rem 1.5rem;
    background: var(--gold);
    color: var(--night);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-sans);
}

.mood-result-spin:hover {
    background: var(--electric);
    transform: translateY(-2px);
}

/* Mood Wheel Wrapper and Circle */
.mood-wheel-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.mood-wheel-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mood-wheel-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mood-wheel {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(212,175,55,0.3) 0deg 60deg,
        rgba(255,140,0,0.3) 60deg 120deg,
        rgba(106,154,196,0.3) 120deg 180deg,
        rgba(205,127,50,0.3) 180deg 240deg,
        rgba(232,167,53,0.3) 240deg 300deg,
        rgba(212,175,55,0.3) 300deg 360deg
    );
    border: 3px solid rgba(212,175,55,0.4);
    box-shadow:
        0 0 40px rgba(212,175,55,0.3),
        inset 0 0 60px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gentle-pulse 4s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .mood-wheel {
        width: 360px;
        height: 360px;
    }

    .mood-wheel-center {
        width: 230px;
        height: 230px;
    }

    .mood-icon {
        font-size: 3.5rem;
    }

    .mood-label {
        font-size: 1.75rem;
    }
}

.mood-wheel:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 60px rgba(212,175,55,0.5),
        inset 0 0 80px rgba(0,0,0,0.4);
}

.mood-wheel.spinning {
    animation: spin-wheel 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes spin-wheel {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(720deg); }
}

@keyframes gentle-pulse {
    0%, 100% {
        box-shadow:
            0 0 40px rgba(212,175,55,0.3),
            inset 0 0 60px rgba(0,0,0,0.5);
    }
    50% {
        box-shadow:
            0 0 50px rgba(212,175,55,0.4),
            inset 0 0 70px rgba(0,0,0,0.4);
    }
}

.mood-wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: rgba(26,26,26,0.95);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212,175,55,0.5);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.mood-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.6));
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.mood-label {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
}

.mood-sublabel {
    font-size: 0.75rem;
    color: rgba(245,245,245,0.6);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mood-intro {
    text-align: center;
    margin: 1rem 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.mood-intro p {
    color: rgba(245,245,245,0.7);
    font-size: 0.95rem;
}

.mood-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mood-option {
    padding: 0.75rem 1rem;
    background: rgba(26,26,26,0.6);
    border: 1px solid rgba(245,245,245,0.1);
    border-radius: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-family: var(--font-sans);
}

.mood-option:hover {
    background: rgba(212,175,55,0.2);
    border-color: rgba(212,175,55,0.5);
    transform: translateY(-2px);
}

.mood-option.active {
    background: rgba(212,175,55,0.3);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.mood-option-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    display: block;
}

.mood-option-label {
    display: block;
    font-weight: 600;
    color: var(--offwhite);
    margin-bottom: 0.125rem;
}

.mood-option-desc {
    display: block;
    font-size: 0.7rem;
    color: rgba(245,245,245,0.5);
}

@media (max-width: 640px) {
    .mood-wheel-section {
        padding: 2rem 1rem;
    }

    .mood-wheel-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .mood-wheel-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    #mood-wheel {
        min-height: auto;
        margin: 0.75rem auto;
        padding: 0.5rem;
    }

    .mood-wheel-wrapper {
        max-width: 100%;
        padding: 0;
        overflow: visible;
    }

    .mood-wheel {
        width: 220px;
        height: 220px;
        border-width: 2px;
        margin: 0 auto;
    }

    .mood-wheel-center {
        width: 140px;
        height: 140px;
    }

    .mood-icon {
        font-size: 2rem;
        margin-bottom: 0.25rem;
    }

    .mood-label {
        font-size: 1rem;
    }

    .mood-sublabel {
        font-size: 0.625rem;
    }

    .mood-intro {
        margin: 0.75rem 0.5rem;
        max-width: 100%;
    }

    .mood-intro p {
        font-size: 0.85rem;
    }

    .mood-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 0.75rem;
        padding: 0 0.5rem;
        max-width: 100%;
    }

    .mood-option {
        padding: 0.5rem 0.625rem;
        font-size: 0.75rem;
    }

    .mood-option-icon {
        font-size: 1.125rem;
        margin-bottom: 0.125rem;
    }

    .mood-option-label {
        font-size: 0.8rem;
        margin-bottom: 0.0625rem;
    }

    .mood-option-desc {
        font-size: 0.625rem;
    }

    .mood-result {
        margin: 1rem 0.5rem;
        padding: 1.25rem;
    }

    .mood-result-title {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }

    .mood-result-text {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
}

/* Extra small devices (iPhones, small screens) */
@media (max-width: 400px) {
    .mood-wheel-section {
        padding: 1.5rem 0.75rem;
    }

    .mood-wheel-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .mood-wheel-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .mood-wheel {
        width: 180px;
        height: 180px;
    }

    .mood-wheel-center {
        width: 115px;
        height: 115px;
    }

    .mood-icon {
        font-size: 1.75rem;
    }

    .mood-label {
        font-size: 0.9rem;
    }

    .mood-sublabel {
        font-size: 0.55rem;
    }

    .mood-intro {
        margin: 0.5rem 0.25rem;
    }

    .mood-intro p {
        font-size: 0.8rem;
    }

    .mood-options {
        margin-top: 0.5rem;
        padding: 0 0.25rem;
        gap: 0.375rem;
    }

    .mood-option {
        padding: 0.4rem 0.5rem;
    }

    .mood-option-icon {
        font-size: 1rem;
    }

    .mood-option-label {
        font-size: 0.7rem;
    }

    .mood-option-desc {
        font-size: 0.55rem;
    }

    .mood-result {
        margin: 0.75rem 0.25rem;
        padding: 1rem;
    }

    .mood-result-title {
        font-size: 1.25rem;
    }

    .mood-result-text {
        font-size: 0.875rem;
    }
}


/* ============================================
   TERMIN ACTIONS (Event Detail Links)
   ============================================ */
.termin-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.termin-link-secondary {
    background: transparent !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
}

.termin-link-secondary:hover {
    background: var(--gold) !important;
    color: var(--night) !important;
}

/* ============================================
   RESPONSIVE FONT SCALING (Accessibility)
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Support for user font size preferences */
html {
    font-size: 16px;
}

@media screen and (min-width: 1920px) {
    html {
        font-size: 18px;
    }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    body {
        --gold: #FFD700;
        --electric: #FFA500;
    }

    .hero-card,
    .termin-card,
    .card,
    .stat-card {
        border-width: 2px;
    }
}

/* ============================================
   LIGHT THEME SUPPORT (when theme is light)
   ============================================ */
body[data-theme="light-classic"] {
    background: #F8F9FA;
    color: #1A1A1A;
    --gold: #B8860B;
    --electric: #1A4A6D;
}

body[data-theme="light-classic"]::before {
    background: linear-gradient(to bottom,
        #F8F9FA,
        #ECEEF0 50%,
        #F8F9FA
    );
}

body[data-theme="light-classic"]::after {
    opacity: 0.08;
}

body[data-theme="light-classic"] header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
}

body[data-theme="light-classic"] .logo-text {
    color: #1A1A1A;
}

body[data-theme="light-classic"] nav a {
    color: #4A4A4A;
}

body[data-theme="light-classic"] nav a:hover {
    color: #1A4A6D;
}

body[data-theme="light-classic"] .hero-bg img {
    opacity: 0.3;
    filter: grayscale(20%);
}

body[data-theme="light-classic"] .hero h1,
body[data-theme="light-classic"] .hero-subtitle {
    color: #1A1A1A;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

body[data-theme="light-classic"] .hero-description {
    color: #2A2A2A;
}

body[data-theme="light-classic"] .card,
body[data-theme="light-classic"] .termin-card,
body[data-theme="light-classic"] .hero-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body[data-theme="light-classic"] .section-title {
    color: #1A1A1A;
}

body[data-theme="light-classic"] .section-description {
    color: #4A4A4A;
}

body[data-theme="light-classic"] .termin-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body[data-theme="light-classic"] .form-input,
body[data-theme="light-classic"] .form-textarea,
body[data-theme="light-classic"] select {
    background: #FFFFFF;
    border: 2px solid #D0D5DD;
    color: #1A1A1A;
}

body[data-theme="light-classic"] .form-input:focus,
body[data-theme="light-classic"] .form-textarea:focus {
    border-color: #1A4A6D;
    box-shadow: 0 0 0 3px rgba(26, 74, 109, 0.1);
}

body[data-theme="light-classic"] .btn-primary {
    background: #1A4A6D;
    color: #FFFFFF;
}

body[data-theme="light-classic"] .btn-primary:hover {
    background: #144061;
}

body[data-theme="light-classic"] .btn-secondary {
    background: transparent;
    border: 2px solid #1A4A6D;
    color: #1A4A6D;
}

body[data-theme="light-classic"] .btn-secondary:hover {
    background: #1A4A6D;
    color: #FFFFFF;
}

body[data-theme="light-classic"] footer {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

body[data-theme="light-classic"] .footer-title {
    color: #1A1A1A;
}

body[data-theme="light-classic"] .footer-text,
body[data-theme="light-classic"] .footer-links a {
    color: #4A4A4A;
}

body[data-theme="light-classic"] .footer-links a:hover {
    color: #1A4A6D;
}

body[data-theme="light-classic"] .mood-wheel {
    border-color: rgba(26, 74, 109, 0.5);
    box-shadow: 0 0 40px rgba(26, 74, 109, 0.2);
}

body[data-theme="light-classic"] .mood-wheel-center {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(26, 74, 109, 0.6);
}

body[data-theme="light-classic"] .mood-label {
    color: #1A4A6D;
}

body[data-theme="light-classic"] .mood-result {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.12);
}

body[data-theme="light-classic"] .mood-result-title {
    color: #1A4A6D;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    header,
    footer,
    .accessibility-toggle,
    .mood-wheel-section,
    .scroll-hint {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero-bg {
        display: none;
    }
}
/* ============================================
   PAGE TEXT STYLING (für About-Seite)
   ============================================ */
.page-text {
    color: var(--offwhite);
    line-height: 1.8;
}

.page-text h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-text h2:first-child {
    margin-top: 0;
}

.page-text h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--electric);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-text p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

.page-text strong {
    color: var(--gold);
    font-weight: 700;
}

.page-text em {
    color: var(--electric);
    font-style: italic;
}

.page-text a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
    transition: var(--transition-smooth);
}

.page-text a:hover {
    color: var(--electric);
    border-bottom-color: var(--electric);
}

/* ============================================
   LEGACY CONTENT LIST (HTML Editor Support)
   ============================================ */
.legacy-content-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.legacy-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.legacy-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.legacy-item-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.legacy-item-body {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.9);
}

.legacy-item-body h2 {
    font-size: 1.4rem;
    color: var(--gold);
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.legacy-item-body h3 {
    font-size: 1.2rem;
    color: var(--electric);
    margin: 1.2rem 0 0.8rem 0;
    font-weight: 600;
}

.legacy-item-body p {
    margin: 1rem 0;
    line-height: 1.8;
}

.legacy-item-body strong {
    color: var(--gold);
    font-weight: 700;
}

.legacy-item-body em {
    color: var(--electric);
    font-style: italic;
}

.legacy-item-body a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
    transition: var(--transition-smooth);
}

.legacy-item-body a:hover {
    color: var(--electric);
    border-bottom-color: var(--electric);
}

.legacy-item-body ul,
.legacy-item-body ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legacy-item-body li {
    margin: 0.5rem 0;
}

.legacy-item-body br {
    display: block;
    content: '';
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .legacy-content-list {
        gap: 1.5rem;
    }
    
    .legacy-item {
        padding: 1.5rem;
    }
    
    .legacy-item-title {
        font-size: 1.3rem;
    }
}