/*
Theme Name: NordFM
Theme URI: https://nordfm.eu
Description: Modernes, stylisches Radio-Theme für NordFM mit Glassmorphism und modernen Animationen
Version: 2.0.0
Author: NordFM Team
Text Domain: nordfm
*/

/* ========================================
   CSS VARIABLES - Modern Color System
======================================== */
:root {
    /* Primary Colors - Modernized */
    --color-primary: #0a1a35;
    --color-primary-light: #152847;
    --color-primary-dark: #050d1a;

    /* Accent Colors - Vibrant Orange */
    --color-accent: #ff6b4a;
    --color-accent-hover: #ff5533;
    --color-accent-light: #ff8566;

    /* Gradients - Modern & Eye-catching */
    --gradient-primary: linear-gradient(135deg, #0a1a35 0%, #1a3456 50%, #0f2240 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b4a 0%, #ff8566 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 26, 53, 0.95) 0%, rgba(10, 26, 53, 0.7) 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-gray-100: #f0f2f5;
    --color-gray-200: #e4e7eb;
    --color-gray-300: #cbd2d9;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;

    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', var(--font-primary);

    /* Font Sizes - Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
    --text-xl: clamp(1.5rem, 1.25rem + 1vw, 2rem);
    --text-2xl: clamp(2rem, 1.5rem + 2vw, 3rem);
    --text-3xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
    --text-4xl: clamp(3rem, 2.5rem + 3vw, 5rem);

    /* Shadows - Modern & Layered */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(255, 107, 74, 0.3);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ========================================
   GLOBAL RESETS & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-gray-800);
    background: var(--color-light);
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-gray-600);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-accent-hover);
}

/* ========================================
   HEADER - Modern Glassmorphism
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: var(--spacing-sm) 0;
    background: rgba(10, 26, 53, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.site-header.scrolled {
    padding: var(--spacing-xs) 0;
    background: rgba(10, 26, 53, 0.95);
    box-shadow: var(--shadow-lg);
}

.navbar-brand img {
    height: 45px;
    width: auto;
    transition: var(--transition-base);
}

.site-header.scrolled .navbar-brand img {
    height: 38px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: var(--text-sm);
    padding: var(--spacing-xs) var(--spacing-md);
    margin: 0 var(--spacing-xs);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   BUTTONS - Modern & Animated
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-listen {
    background: var(--gradient-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.btn-listen:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 107, 74, 0.5);
    color: var(--color-white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-outline-primary:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   HERO SECTION - Stunning Gradient Background
======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 74, 0.15) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(20px, 20px) scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-2xl) var(--spacing-md);
}

.hero-content h1 {
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-content .btn {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SECTIONS - Modern Layout
======================================== */
.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.section-header h2 {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    margin-top: var(--spacing-md);
}

/* ========================================
   CARDS - Glassmorphism Design
======================================== */
.card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(255, 107, 74, 0.2);
}

.show-card {
    position: relative;
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
}

.show-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-card i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.card-body {
    padding: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.show-time {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-accent);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

.show-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.show-host {
    font-size: var(--text-sm);
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.show-desc {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* ========================================
   TEAM SECTION
======================================== */
.team-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.team-member {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.team-member::before {
    content: '';
    display: block;
    width: 100%;
    height: 280px;
    background: var(--gradient-primary);
    position: relative;
}

.member-info {
    padding: var(--spacing-lg);
    text-align: center;
}

.member-name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.member-role {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--gradient-accent);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
}

.member-show {
    font-size: var(--text-sm);
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.member-bio {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    color: var(--color-gray-600);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--gradient-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ========================================
   BLOG/ARCHIVE
======================================== */
.blog-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.blog-image {
    width: 100%;
    height: 240px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-category {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    padding: 0.5rem 1rem;
    background: var(--gradient-accent);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.blog-content {
    padding: var(--spacing-lg);
}

.blog-meta {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    margin-bottom: var(--spacing-sm);
    font-size: var(--text-xs);
    color: var(--color-gray-500);
}

.blog-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.blog-excerpt {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.btn-read-more {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: transparent;
    color: var(--color-accent);
    font-size: var(--text-sm);
    font-weight: 600;
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.btn-read-more:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateX(4px);
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--color-white);
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: var(--transition-base);
    height: 100%;
}

.testimonial:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.testimonial p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.testimonial .author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-md);
}

.testimonial .name {
    display: block;
    font-weight: 700;
    font-size: var(--text-base);
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.testimonial .role {
    display: block;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-col h5 {
    color: var(--color-white);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    margin-bottom: var(--spacing-xs);
}

.disclaimer {
    font-size: var(--text-xs);
    color: var(--color-accent) !important;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: var(--text-3xl);
    }

    .section {
        padding: var(--spacing-2xl) 0;
    }

    .team-grid,
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 80vh;
    }

    .section-header h2 {
        font-size: var(--text-2xl);
    }

    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

/* ========================================
   SWIPER SLIDER STYLES
======================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-white);
    opacity: 0.8;
    transition: var(--transition-fast);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: var(--color-white);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--color-accent);
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FEATURE CARDS
======================================== */
.feature-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(255, 107, 74, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: var(--gradient-accent);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-white);
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.feature-card p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-accent);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: var(--transition-fast);
}

.feature-link:hover {
    gap: var(--spacing-sm);
}

/* ========================================
   PODCAST ITEMS
======================================== */
.podcast-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-lg);
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.podcast-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
}

.podcast-play-btn {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gradient-accent);
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.podcast-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 107, 74, 0.5);
}

.podcast-info {
    flex: 1;
}

.podcast-date {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-xs);
}

.podcast-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.podcast-excerpt {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* ========================================
   NEWSLETTER
======================================== */
.newsletter {
    background: var(--color-white);
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    padding: 1rem 1.5rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    transition: var(--transition-fast);
}

.newsletter-form .form-control:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.1);
}

.btn-subscribe {
    background: var(--gradient-accent);
    color: var(--color-white);
    padding: 1rem 2rem;
    font-weight: 600;
    border: none;
    box-shadow: var(--shadow-glow);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 107, 74, 0.5);
}

/* ========================================
   BUTTONS - Additional Styles
======================================== */
.btn-primary {
    background: var(--gradient-accent);
    color: var(--color-white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: var(--text-sm);
}

.play-show {
    width: 100%;
}

/* ========================================
   LEGAL PAGE (Impressum)
======================================== */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.legal-page h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--color-gray-200);
}

.legal-page h3:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-page address {
    font-style: normal;
    line-height: 1.8;
}

.legal-page p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.disclaimer-box {
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.1) 0%, rgba(255, 107, 74, 0.05) 100%);
    border-left: 4px solid var(--color-accent);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin: var(--spacing-xl) 0;
}

.disclaimer-box p {
    margin-bottom: 0;
}

/* ========================================
   PLAYLIST PAGE
======================================== */
.playlist-container {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.playlist-filters {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.playlist-filters input[type="date"],
.playlist-filters input[type="time"] {
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    transition: var(--transition-fast);
}

.playlist-filters input:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.1);
}

.playlist-table {
    width: 100%;
    border-collapse: collapse;
}

.playlist-table thead {
    background: var(--color-gray-100);
}

.playlist-table th {
    padding: var(--spacing-md);
    text-align: left;
    font-weight: 700;
    color: var(--color-primary);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.playlist-table td {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--color-gray-200);
}

.playlist-table tr:hover {
    background: var(--color-gray-100);
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.mt-5 { margin-top: var(--spacing-xl); }
.w-100 { width: 100%; }
.d-none { display: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.g-3 > * { padding: 0.75rem; }
.g-4 > * { padding: 1rem; }
.row { display: flex; flex-wrap: wrap; margin: -1rem; }
.row > * { padding: 1rem; }
.col-md-4, .col-md-6, .col-lg-4, .col-lg-8 { flex: 0 0 100%; }

@media (min-width: 768px) {
    .col-md-4 { flex: 0 0 33.333333%; }
    .col-md-6 { flex: 0 0 50%; }
}

@media (min-width: 992px) {
    .col-lg-4 { flex: 0 0 33.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; }
}

.mx-auto { margin-left: auto; margin-right: auto; }
