/*
Theme Name: NordFM
Theme URI: https://nordfm.eu
Author: Patrick Walters (palwal)
Description: Theme für NordFM - Mehr Nord. Mehr Musik. Mehr Du.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nordfm
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

NordFM basiert auf eigenem Design und verwendet Bootstrap 5 ausschließlich für Layout-Utilities.
*/

:root {
            --primary: #001842;
            --primary-light: #0a2a5e;
            --primary-dark: #000d1f;
            --accent: #ff6b4a;
            --accent-light: #ff8a6b;
            --accent-dark: #e85533;
            --text: #1a1a1a;
            --text-light: #666666;
            --bg-light: #f8f9fa;
            --border: #e0e0e0;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
            --shadow-md: 0 8px 30px rgba(0,24,66,0.15);
            --shadow-lg: 0 15px 50px rgba(0,24,66,0.25);
            --radius: 16px;
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* ========== HEADER ========== */
        .site-header {
            background: var(--primary);
            color: var(--white);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
            backdrop-filter: blur(10px);
        }

        .navbar-brand img {
            height: 45px;
            transition: var(--transition);
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .nav-link {
            color: rgba(255,255,255,0.85) !important;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem !important;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--white) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-link:hover::after {
            width: 60%;
        }

        .btn-listen {
            background: var(--gradient-accent);
            color: var(--white);
            font-weight: 600;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            border: none;
            box-shadow: 0 4px 15px rgba(255,107,74,0.3);
        }

        .btn-listen:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255,107,74,0.5);
            color: var(--white);
        }

        .btn-listen i {
            font-size: 0.9rem;
        }

        /* ========== HERO SLIDER ========== */
        .hero-slider {
            position: relative;
            height: 700px;
            overflow: hidden;
            background: var(--primary);
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 40%, rgba(255,107,74,0.15) 0%, transparent 60%),
                        radial-gradient(circle at 20% 80%, rgba(10,42,94,0.3) 0%, transparent 50%);
            z-index: 1;
        }

        .slide:nth-child(1) {
            background: linear-gradient(135deg, #001842 0%, #0a2a5e 50%, #162f5f 100%);
        }

        .slide:nth-child(2) {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        }

        .slide:nth-child(3) {
            background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
        }

        .slide-content {
            max-width: 900px;
            color: var(--white);
            z-index: 2;
            text-align: center;
            padding: 0 2rem;
            animation: slideUp 0.8s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-content h1,
        .slide-content h2 {
            font-size: clamp(2.5rem, 7vw, 5rem);
            margin-bottom: 1.5rem;
            font-weight: 900;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            letter-spacing: -1px;
        }

        .slide-content p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            opacity: 0.95;
            margin-bottom: 2.5rem;
            font-weight: 400;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .slide-content .btn-listen {
            font-size: 1.1rem;
            padding: 1rem 2.5rem;
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 2rem;
            z-index: 10;
        }

        .slider-dots {
            display: flex;
            gap: 12px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .slider-dot:hover {
            background: rgba(255,255,255,0.6);
            transform: scale(1.2);
        }

        .slider-dot.active {
            background: var(--accent);
            width: 40px;
            border-radius: 6px;
            border-color: rgba(255,255,255,0.3);
        }

        .slider-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .slider-arrow:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: scale(1.1);
        }

        /* ========== SECTIONS ========== */
        .section {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--gradient-accent);
            border-radius: 3px;
        }

        .section-header p {
            color: var(--text-light);
            margin-top: 1.5rem;
            font-size: 1.15rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== SHOWS ========== */
        .shows-preview {
            background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
        }

        .show-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            height: 100%;
            border: 1px solid transparent;
        }

        .show-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent);
        }

        .card-image {
            height: 220px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 3.5rem;
            position: relative;
            overflow: hidden;
        }

        .card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255,107,74,0.2) 0%, transparent 70%);
        }

        .card-image i {
            z-index: 2;
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
        }

        .card-body {
            padding: 1.8rem;
        }

        .show-time {
            color: var(--accent);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.8rem;
            display: inline-block;
            background: rgba(255,107,74,0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
        }

        .show-title {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .show-host {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .show-desc {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .btn-primary {
            background: var(--gradient-accent);
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,107,74,0.4);
        }

        .btn-outline-primary {
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn-outline-primary:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* ========== PODCASTS ========== */
        .podcast-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            background: var(--white);
            padding: 2rem;
            border-radius: var(--radius);
            border: 2px solid var(--border);
            transition: var(--transition);
            margin-bottom: 1.5rem;
        }

        .podcast-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
            transform: translateX(5px);
        }

        .podcast-play-btn {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: var(--gradient-accent);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            border: none;
            cursor: pointer;
            flex-shrink: 0;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255,107,74,0.3);
        }

        .podcast-play-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(255,107,74,0.5);
        }

        .podcast-date {
            color: var(--accent);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .podcast-title {
            font-size: 1.3rem;
            color: var(--primary);
            margin: 0.5rem 0;
        }

        .podcast-excerpt {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ========== TESTIMONIALS ========== */
        .testimonials {
            background: var(--gradient-primary);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .testimonials .section-header h2,
        .testimonials .section-header h2::after {
            color: var(--white);
        }

        .testimonials .section-header p {
            color: rgba(255,255,255,0.9);
        }

        .testimonial {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: var(--radius);
            margin-bottom: 2rem;
            border: 1px solid rgba(255,255,255,0.2);
            transition: var(--transition);
        }

        .testimonial:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        .testimonial p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .author .name {
            font-weight: 700;
            display: block;
            font-size: 1.1rem;
        }

        .author .role {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* ========== NEWSLETTER ========== */
        .newsletter {
            background: var(--bg-light);
        }

        .newsletter-form {
            max-width: 700px;
            margin: 0 auto;
        }

        .newsletter-form input {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(255,107,74,0.1);
        }

        .btn-subscribe {
            background: var(--gradient-accent);
            color: var(--white);
            border: none;
            padding: 1.1rem 2rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255,107,74,0.3);
        }

        .btn-subscribe:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255,107,74,0.5);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--primary-dark);
            color: rgba(255,255,255,0.8);
            padding: 4rem 0 2rem;
            font-size: 0.95rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h5 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 0.8rem;
        }

        .footer-col a {
            color: rgba(255,255,255,0.8);
            transition: var(--transition);
            display: inline-block;
            text-decoration: none;
        }

        .footer-col a:hover {
            color: var(--accent);

        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-5px);
            color: rgba(255,255,255,0.6);
            box-shadow: 0 5px 15px rgba(255,107,74,0.4);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }

        .disclaimer {
            margin-top: 1rem;
            font-size: 0.85rem;
            color: var(--accent-light);
        }

        /* ========== Team Seite ========== */
        .team-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .blog-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .filter-btn {
            background: var(--bg-light);
            border: 2px solid var(--border);
            color: var(--text);
            padding: 0.6rem 1.4rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .filter-btn.active, .filter-btn:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2.5rem;
        }
        .team-member {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            text-align: center;
        }
        .team-member:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        .member-photo {
            width: 100%;
            height: 280px;
            object-fit: cover;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }
        .member-info {
            padding: 1.8rem 1.2rem;
        }
        .member-name {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 0.3rem;
        }
        .member-role {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            display: block;
        }
        .member-show {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .member-bio {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.2rem;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
        }
        .blog-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        .blog-image {
            height: 200px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            position: relative;
        }
        .blog-category {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--accent);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .blog-content {
            padding: 1.8rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .blog-meta {
            display: flex;
            gap: 1.2rem;
            color: var(--text-light);
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }
        .blog-date, .blog-read-time {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .blog-title {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 1rem;
            line-height: 1.3;
            flex-grow: 1;
        }
        .blog-excerpt {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        .btn-read-more {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
            display: inline-block;
            width: fit-content;
        }
        .btn-read-more:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* ========== SHOWS SEITE ========== */
        .shows-day {
            margin-bottom: 3.5rem;
        }
        .day-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--border);
        }
        .day-name {
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 700;
        }
        .day-date {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,107,74,0.15);
            color: var(--accent);
            padding: 0.25rem 0.8rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-left: auto;
        }
        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.4; }
            100% { opacity: 1; }
        }
        .show-card.live {
            border-color: var(--accent);
            background: rgba(255,107,74,0.03);
        }
        .show-card.live .show-time {
            background: rgba(255,107,74,0.2);
            color: var(--accent-dark);
        }
        .show-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
        }
        .btn-archive {
            font-size: 0.85rem;
            padding: 0.4rem 1rem;
            background: transparent;
            color: var(--text-light);
            border: 1px solid var(--border);
            border-radius: 8px;
            transition: var(--transition);
        }
        .btn-archive:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .blog-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--border);
        }
        .blog-meta {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        .blog-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .blog-category-badge {
            background: var(--accent);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
        }
        .blog-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text);
        }
        .blog-content p {
            margin-bottom: 1.5rem;
        }
        .blog-content h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1.5rem;
            color: var(--primary);
        }
        .blog-content h3 {
            font-size: 1.4rem;
            margin: 2rem 0 1.2rem;
            color: var(--primary);
        }
        .blog-quote {
            background: var(--bg-light);
            border-left: 4px solid var(--accent);
            padding: 1.8rem;
            margin: 2.5rem 0;
            font-style: italic;
            font-size: 1.2rem;
            line-height: 1.7;
            color: var(--primary);
            border-radius: 0 12px 12px 0;
        }
        .blog-quote::before {
            content: "";
            font-size: 3rem;
            color: var(--accent);
            opacity: 0.3;
            position: absolute;
            margin-left: -1.2rem;
        }
        .blog-image-full {
            width: 100%;
            height: 400px;
            background: var(--gradient-primary);
            margin: 2.5rem 0;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        .blog-share {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 3rem 0;
            padding-top: 2rem;
            border-top: 2px solid var(--border);
        }
        .share-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: var(--transition);
            border: 1px solid var(--border);
        }
        .share-btn:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
            border-color: var(--accent);
        }
        .related-posts {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 2px solid var(--border);
        }
        .related-posts .section-header {
            margin-bottom: 2rem;
        }

        /* ========== ÜBER UNS SEITE ========== */
        .mission-statement {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 4rem 0;
            border-radius: var(--radius);
            margin-bottom: 4rem;
            text-align: center;
        }
        .mission-statement p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            opacity: 0.95;
        }
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }
        .value-card {
            text-align: center;
            padding: 2rem 1.5rem;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }
        .value-icon {
            width: 80px;
            height: 80px;
            background: rgba(0,24,66,0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--primary);
            font-size: 2rem;
        }
        .value-title {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .value-desc {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            text-align: center;
            margin: 3rem 0;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            color: var(--text-light);
            font-size: 1.1rem;
        }
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 4rem auto 0;
            padding-left: 40px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 20px;
            width: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            padding-left: 30px;
        }
        .timeline-dot {
            position: absolute;
            left: -10px;
            top: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--white);
            border: 4px solid var(--accent);
        }
        .timeline-year {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .timeline-content p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .playlist-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }
        .date-btn {
            background: var(--bg-light);
            border: 2px solid var(--border);
            color: var(--text);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .date-btn.active, .date-btn:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
        }
        .playlist-day {
            margin-bottom: 3rem;
        }
        .playlist-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--border);
        }
        .playlist-date {
            font-size: 1.4rem;
            color: var(--primary);
            font-weight: 700;
        }
        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,107,74,0.15);
            color: var(--accent);
            padding: 0.25rem 0.8rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-left: auto;
        }
        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.4; }
            100% { opacity: 1; }
        }
        .song-list {
            list-style: none;
        }
        .song-item {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1.2rem 0;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }
        .song-item:hover {
            background: rgba(0,24,66,0.02);
            transform: translateX(5px);
        }
        .song-cover {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .song-info {
            flex-grow: 1;
        }
        .song-time {
            color: var(--accent);
            font-weight: 700;
            font-size: 0.9rem;
            min-width: 60px;
            text-align: right;
            flex-shrink: 0;
        }
        .song-title {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.2rem;
        }
        .song-artist {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .song-item.live {
            background: rgba(255,107,74,0.05);
            border-left: 4px solid var(--accent);
        }
        .song-item.live .song-time {
            color: var(--accent-dark);
        }

        .jobs-hero {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 4rem 0;
            border-radius: var(--radius);
            margin-bottom: 4rem;
            text-align: center;
        }
        .jobs-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            opacity: 0.95;
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .benefit-item {
            text-align: center;
            padding: 1.8rem 1rem;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .benefit-item:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }
        .benefit-icon {
            width: 60px;
            height: 60px;
            background: rgba(0,24,66,0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            color: var(--primary);
            font-size: 1.6rem;
        }
        .benefit-title {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 0.6rem;
        }
        .benefit-desc {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        .job-listings {
            margin-top: 3rem;
        }
        .job-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 1.8rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--border);
            margin-bottom: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--accent);
        }
        .job-info {
            flex: 1;
            min-width: 250px;
        }
        .job-title {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 0.4rem;
        }
        .job-meta {
            display: flex;
            gap: 1.2rem;
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        .job-meta span {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .job-status {
            background: rgba(255,107,74,0.1);
            color: var(--accent);
            padding: 0.25rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
        }
        .btn-apply {
            background: var(--gradient-accent);
            color: var(--white);
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            white-space: nowrap;
        }
        .btn-apply:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,107,74,0.4);
        }

        .job-hero {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 3rem 0;
            border-radius: var(--radius);
            margin-bottom: 3rem;
            text-align: center;
        }
        .job-meta {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1.2rem;
            flex-wrap: wrap;
        }
        .job-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }
        .job-section {
            margin-bottom: 3rem;
        }
        .job-section h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.6rem;
        }
        .job-list {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .job-list li {
            margin-bottom: 0.8rem;
            color: var(--text);
        }
        .team-preview {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .team-member-mini {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 120px;
        }
        .member-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }
        .member-name-mini {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--primary);
        }
        .member-role-mini {
            font-size: 0.85rem;
            color: var(--text-light);
        }
        .application-form {
            background: var(--bg-light);
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary);
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(255,107,74,0.1);
        }
        .btn-submit {
            background: var(--gradient-accent);
            color: var(--white);
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            box-shadow: 0 4px 15px rgba(255,107,74,0.3);
        }
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255,107,74,0.5);
        }

        .ad-hero {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 4rem 0;
            border-radius: var(--radius);
            margin-bottom: 4rem;
            text-align: center;
        }
        .ad-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            opacity: 0.95;
        }
        .formats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }
        .format-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--border);
            text-align: center;
        }
        .format-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent);
        }
        .format-icon {
            width: 80px;
            height: 80px;
            background: rgba(0,24,66,0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--primary);
            font-size: 2rem;
        }
        .format-title {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .format-desc {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.2rem;
        }
        .stats-highlight {
            background: var(--bg-light);
            padding: 3rem;
            border-radius: var(--radius);
            text-align: center;
            margin: 4rem 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
        }
        .stat-label {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-top: 0.5rem;
        }
        .contact-form {
            background: var(--white);
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            max-width: 700px;
            margin: 4rem auto 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary);
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(255,107,74,0.1);
        }
        .btn-submit {
            background: var(--gradient-accent);
            color: var(--white);
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            box-shadow: 0 4px 15px rgba(255,107,74,0.3);
        }
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255,107,74,0.5);
        }

        .legal-page {
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        .legal-page h2 {
            color: var(--primary);
            margin: 2.5rem 0 1.5rem;
            font-size: 1.8rem;
        }
        .legal-page h3 {
            color: var(--primary);
            margin: 2rem 0 1rem;
            font-size: 1.4rem;
        }
        .legal-page p, .legal-page ul, .legal-page address {
            margin-bottom: 1.2rem;
            color: var(--text);
        }
        .legal-page ul {
            padding-left: 1.5rem;
        }
        .legal-page li {
            margin-bottom: 0.6rem;
        }
        .disclaimer-box {
            background: var(--bg-light);
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }

        .legal-page {
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        .legal-page h2 {
            color: var(--primary);
            margin: 2.5rem 0 1.5rem;
            font-size: 1.8rem;
        }
        .legal-page h3 {
            color: var(--primary);
            margin: 2rem 0 1rem;
            font-size: 1.4rem;
        }
        .legal-page p, .legal-page ul, .legal-page ol {
            margin-bottom: 1.2rem;
            color: var(--text);
        }
        .legal-page ul, .legal-page ol {
            padding-left: 1.8rem;
        }
        .legal-page li {
            margin-bottom: 0.6rem;
        }
        .highlight {
            background: var(--bg-light);
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .disclaimer-box {
            background: var(--bg-light);
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }

        .blank-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .blank-content h1 {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--primary);
        }

        .component-section {
            margin-bottom: 4rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border);
        }
        .component-section h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .btn-group-demo {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        .card-demo {
            margin-bottom: 1.5rem;
        }
        .alert-demo {
            margin: 1rem 0;
        }
        .form-demo {
            max-width: 600px;
            margin: 1rem 0;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 992px) {
            
            .hero-slider { height: 600px; }
            .section { padding: 4rem 0; }
        }

        @media (max-width: 768px) {
            .legal-page {
                padding: 0 1rem;
            }
            .hero-slider { height: 500px; }
            .slide-content h1, .slide-content h2 { font-size: 2.5rem; }
            .slide-content p { font-size: 1.1rem; }
            .slider-controls { bottom: 30px; gap: 1rem; }
            .slider-arrow { width: 40px; height: 40px; }
            .podcast-item { flex-direction: column; text-align: center; }
            .day-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            .live-indicator {
                margin-left: 0;
            }
            .blog-grid {
                grid-template-columns: 1fr;
            }
            .blog-filters {
                gap: 0.6rem;
            }
            .filter-btn {
                padding: 0.4rem 1rem;
                font-size: 0.9rem;
            }

            .blog-header h1 {
                font-size: 2rem;
            }
            .blog-content {
                font-size: 1rem;
                padding: 0 1rem;
            }
            .blog-image-full {
                height: 250px;
                font-size: 2rem;
            }
            .blog-meta {
                gap: 1rem;
                font-size: 0.9rem;
            }

            .mission-statement p {
                font-size: 1.2rem;
            }
            .stat-number {
                font-size: 2.2rem;
            }
            .timeline {
                padding-left: 20px;
            }
            .timeline::before {
                left: 10px;
            }
            .timeline-item {
                padding-left: 20px;
            }
            .timeline-dot {
                left: -12px;
            }

            .song-item {
                gap: 0.8rem;
            }
            .song-cover {
                width: 50px;
                height: 50px;
                font-size: 1rem;
            }
            .song-time {
                font-size: 0.85rem;
                min-width: 50px;
            }
            .playlist-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            .live-indicator {
                margin-left: 0;
            }

            .job-card {
                flex-direction: column;
                align-items: stretch;
            }
            .btn-apply {
                align-self: flex-start;
            }

            .job-hero {
                padding: 2rem 1rem;
            }
            .job-meta {
                gap: 1rem;
                font-size: 0.9rem;
            }
            .team-member-mini {
                width: 100px;
            }
            .member-avatar {
                width: 70px;
                height: 70px;
                font-size: 1.3rem;
            }

            .ad-hero p {
                font-size: 1.1rem;
            }
            .stat-value {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-slider { height: 450px; }
            .slide-content { padding: 0 1rem; }
        }