/*
Theme Name: Jörn Bastian Professional
Description: Custom theme for professional speaker website
Version: 1.0
Author: Jörn Bastian
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #d4af37;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    position: relative;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ccc;
    font-weight: 300;
}

.cta-button {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Unique Voice Section */
.unique-voice {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    font-weight: 300;
}

.voice-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 1rem;
}

.stat-description {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Audio Section */
.audio-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

.audio-player {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.audio-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.audio-tab {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 0.8rem 1.5rem;
    border: 1px solid #d4af37;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.audio-tab:hover,
.audio-tab.active {
    background: #d4af37;
    color: #000;
}

.audio-player-container {
    text-align: center;
}

.audio-player-container audio {
    width: 100%;
    max-width: 600px;
    margin: 1rem 0;
}

.audio-description {
    color: #ccc;
    font-style: italic;
    margin-top: 1rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: #d4af37;
    fill: none;
    stroke-width: 1.5;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-description {
    color: #ccc;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.contact-info {
    margin-top: 3rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 1.1rem;
}

.contact-item a {
    color: #d4af37;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1a1a1a;
    padding: 2rem 0;
    text-align: center;
    color: #ccc;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .audio-controls {
        flex-direction: column;
        align-items: center;
    }
}
/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 25px;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    padding: 2rem;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav li {
    margin: 1rem 0;
    text-align: center;
}

.mobile-nav a {
    font-size: 1.2rem;
    padding: 1rem;
    display: block;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}
/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(26, 26, 26, 0.3);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Für längere Seiten - zusätzlicher "Zurück nach oben" Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}
/* ===== VERFEINERTE HOVER-EFFEKTE ===== */

/* CTA-Buttons (Call-to-Action) */
.cta-button {
    position: relative;
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Submit Buttons (Formulare) */
.submit-button {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.submit-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.submit-button:hover::after {
    width: 300px;
    height: 300px;
}

.submit-button:active {
    transform: translateY(0) scale(0.98);
}

/* Navigation Links */
.nav-links a {
    position: relative;
    color: #ccc;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 80%;
}

/* Content Links (im Text) */
.impressum-section a,
.datenschutz-section a,
.timeline-content a {
    position: relative;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.impressum-section a::after,
.datenschutz-section a::after,
.timeline-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    transition: width 0.3s ease;
}

.impressum-section a:hover,
.datenschutz-section a:hover,
.timeline-content a:hover {
    color: #ffd700;
    transform: translateX(3px);
}

.impressum-section a:hover::after,
.datenschutz-section a:hover::after,
.timeline-content a:hover::after {
    width: 100%;
}

/* Audio Tabs */
.audio-tab {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #ccc;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.audio-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
    transition: left 0.4s ease;
}

.audio-tab:hover {
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.audio-tab:hover::before {
    left: 0;
}

.audio-tab.active {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    border-color: #ffd700;
    color: #000;
    transform: translateY(-1px);
}

/* Service Cards */
.service-card {
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05), rgba(255, 215, 0, 0.02));
    transition: left 0.5s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-card:hover::before {
    left: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

/* Timeline Items */
.timeline-content {
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Contact Items */
.contact-item {
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 1rem;
    margin: -1rem;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

/* Form Inputs mit Fokus-Effekten */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: scale(1.02);
}

/* Checkbox mit Custom Styling */
.checkbox-label {
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    transform: translateX(3px);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    animation: checkboxPulse 0.3s ease;
}

@keyframes checkboxPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* Logo Hover */
.logo {
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Stunt Items (Radio Karriere) */
.stunt-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.stunt-item:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

/* Right Items (Datenschutz) */
.right-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.right-item:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.12);
}

/* Special Boxes Hover */
.epic-moment:hover,
.nsync-special:hover,
.juhnke-moment:hover,
.johnny-logan-special:hover,
.chaos-moment:hover,
.freepick-tradition:hover,
.silvester-team:hover,
.radio-magic:hover,
.cvd-hochwasser:hover,
.kinderzeit-special:hover,
.sender-wecken:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Stat Cards */
.stat-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.1);
}

.mobile-menu-toggle:hover span {
    background: #d4af37;
}

/* Pulse Animation für wichtige Elemente */
@keyframes subtlePulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.cta-button:hover {
    animation: subtlePulse 2s infinite;
}

/* Smooth Transitions für alle interaktiven Elemente */
* {
    scroll-behavior: smooth;
}

/* Focus Styles für Accessibility */
*:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* Responsive Hover-Effekte nur auf Desktop */
@media (hover: hover) and (pointer: fine) {
    /* Alle Hover-Effekte nur auf Geräten mit echter Hover-Unterstützung */
}

@media (max-width: 768px) {
    /* Reduzierte Hover-Effekte auf mobilen Geräten */
    .service-card:hover,
    .timeline-content:hover,
    .stunt-item:hover,
    .right-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Fokus auf Touch-freundliche Interaktionen */
    .cta-button:active,
    .submit-button:active {
        transform: scale(0.95);
    }
}
/* ===== SVG WELLEN-ANIMATION ===== */
header .flowing-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.wave-svg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 500%;
    height: 100%;
    animation: flowingWave 20s linear infinite;
}

.wave-svg svg {
    width: 100%;
    height: 100%;
}
/* ===== SAUBERE WELLEN-ANIMATION (nur CSS) ===== */
.wave-svg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    animation: smoothWaveFlow 45s linear infinite;
}

@keyframes smoothWaveFlow {
    from { 
        transform: translateX(-100%); 
    }
    to { 
        transform: translateX(33.333%); 
    }
}
/* ===== TIMELINE TREASURE LINKS ===== */
.treasure-link-box {
    text-align: center;
    margin-top: 1.5rem;
}

.timeline-treasure-link {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(255, 215, 0, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.timeline-treasure-link:hover {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    text-decoration: none;
}

.timeline-treasure-link i {
    margin-right: 0.5rem;
    font-size: 1rem;
}