/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Branding Farben */
    --color-van:   #4CAF50;
    --color-con:   #9D00FF;
    --color-taste: #FF9800;
    --color-jacky: #E91E63;
    --theme-color: #E50914; /* Neu hinzugefügt für den unteren Bereich */

    /* Hintergrund & Text */
    --bg-dark:     #121212;
    --bg-card:     #1a1a1a;
    --bg-panel:    #1a1a1a;
    --bg-box:      #1e1e1e;
    --bg-footer:   #0a0a0a;
    --text-white:  #ffffff;
    --text-muted:  #ccc;
    --border-color:#333;

    /* Layout & Fonts */
    --header-height: 80px;
    --transition:    0.3s ease;
    --font-main:     'Open Sans', -apple-system, sans-serif;
    --font-heading:  'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: var(--header-height);
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--color-van);
    outline: none;
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-card);
    min-width: 220px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding-top: 10px;
    overflow: hidden;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-content a {
    padding: 12px 20px;
    display: block;
    font-size: 0.85rem;
    border-bottom: 1px solid #222;
    color: var(--text-muted);
}

.dropdown-content a:hover {
    background: #333;
    color: white;
}
.dropdown-content a:last-child { border-bottom: none; }

/* Indicators (Live) */
.live-indicator {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255, 0, 0, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid red;
    font-weight: bold; font-size: 0.8rem;
}

.dot {
    width: 8px; height: 8px;
    background-color: red;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* Burger Menu Base */
.burger { display: none; cursor: pointer; z-index: 1002; }
.burger div {
    width: 25px; height: 3px;
    background-color: white;
    margin: 5px;
    transition: var(--transition);
}

/* =========================================
   3. HERO SECTIONS (ACCORDION & BANNER)
   ========================================= */
/* A. Accordion Hero */
.hero-container {
    display: flex;
    width: 100%;
    height: 100vh;
    padding-top: var(--header-height);
}

.panel {
    background-size: cover;
    background-position: center;
    position: relative;
    flex: 1;
    cursor: pointer;
    overflow: hidden;
    transition: flex 0.7s cubic-bezier(0.05, 0.6, 0.4, 0.9);
    border-right: 1px solid rgba(0,0,0,0.3);
}

.panel:hover { flex: 4; }

/* Panel Images & Colors */
.panel-van   { background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1523987355523-c7b5b0dd90a7?auto=format&fit=crop&w=800&q=80'); }
.panel-con   { background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=800&q=80'); }
.panel-taste { background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=800&q=80'); }
.panel-jacky { background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1535295972055-1c762f4483e5?auto=format&fit=crop&w=800&q=80'); }

.panel-van h3   { color: var(--color-van); }
.panel-con h3   { color: var(--color-con); }
.panel-taste h3 { color: var(--color-taste); }
.panel-jacky h3 { color: var(--color-jacky); }

.panel-content {
    position: absolute; bottom: 40px; left: 20px; right: 20px;
    opacity: 0;
    transition: opacity 0.4s ease-in 0.3s;
}

.panel:hover .panel-content { opacity: 1; }

.panel h3 {
    font-size: 2.5rem; margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.btn-panel {
    display: inline-block; margin-top: 15px; padding: 10px 25px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid white;
    font-weight: bold; text-transform: uppercase;
}
.btn-panel:hover { background: white; color: black; }

.panel-label {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    white-space: nowrap;
    font-size: 1.5rem; font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 0 0 10px black;
    pointer-events: none;
    transition: opacity 0.3s;
}
.panel:hover .panel-label { opacity: 0; }

/* B. Alternative Static Heroes (Contact/Content) */
.contact-hero,
.hero-wrapper {
    margin-top: var(--header-height);
    height: 300px;
    background-size: cover; background-position: center;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.contact-hero { background-image: linear-gradient(rgba(0,0,0,0.6), var(--bg-dark)), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1353&q=80'); }
.hero-wrapper { background-image: linear-gradient(rgba(0,0,0,0.7), var(--bg-dark)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); }

.contact-hero h1,
.hero-wrapper h1 {
    font-size: 3rem; color: var(--color-van);
    text-shadow: 0 0 20px black;
    letter-spacing: 2px;
}
.contact-hero p,
.hero-wrapper p {
    color: var(--text-muted); margin-top: 10px; letter-spacing: 1px;
}

/* C. Alternative Fullscreen Hero (Red Theme) */
.hero-section {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(10,10,10,1)), url('/template/img/creator/livebe4youdie-jacky/the-crow-livebe4youdie.jpg');
    background-size: cover; background-position: center;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 4rem; font-weight: 900;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem; letter-spacing: 5px;
    color: var(--theme-color);
    margin-bottom: 40px; font-weight: 600;
}

.cta-btn {
    padding: 15px 40px; border: 2px solid var(--theme-color);
    color: white; font-weight: bold;
    text-transform: uppercase; letter-spacing: 2px;
    background: rgba(229, 9, 20, 0.1);
    transition: 0.3s;
}
.cta-btn:hover { background: var(--theme-color); box-shadow: 0 0 30px rgba(229, 9, 20, 0.6); }


/* =========================================
   4. LAYOUT GRID & SIDEBARS
   ========================================= */
.container {
    max-width: 1200px; margin: 0 auto; padding: 60px 20px;
    display: grid;
    grid-template-columns: 250px 1fr; /* Sidebar links */
    gap: 50px;
}

.contact-container {
    max-width: 1200px; margin: 0 auto; padding: 60px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr; /* Content links, Sidebar rechts */
    gap: 50px;
}

.split-section {
    display: grid; grid-template-columns: 1fr 1fr;
    max-width: 1200px; margin: 100px auto;
    gap: 60px; padding: 0 40px;
    align-items: center;
}

.sidebar, .info-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    height: fit-content;
}

/* Sticky Sidebar Logic */
.sidebar {
    position: sticky; top: 100px;
    align-self: start;
    background: var(--bg-panel);
    padding: 20px;
    border-radius: 10px;
}

.info-card h3, .sidebar h3 {
    font-size: 1.1rem;
    border-bottom: 2px solid var(--color-van);
    padding-bottom: 10px; margin-bottom: 20px;
}
.sidebar h3 { font-size: 1rem; margin-bottom: 15px; }

.info-item {
    display: flex; align-items: flex-start; gap: 15px;
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 0.95rem; line-height: 1.5;
}
.info-item i { color: var(--color-van); margin-top: 4px; }

.nav-item {
    display: block; padding: 10px;
    color: #aaa; transition: 0.2s;
    border-radius: 5px; font-size: 0.9rem;
}
.nav-item:hover { background: #333; color: white; padding-left: 15px; }
.nav-item.active { color: var(--color-van); font-weight: bold; }


/* =========================================
   5. CONTENT COMPONENTS
   ========================================= */
.content-section { padding: 80px 10%; text-align: center; }

/* Cards & Creator Grid */
.creators-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; margin-top: 40px;
}

.creator-card {
    background: var(--bg-card); padding: 30px;
    border-radius: 15px; border: 1px solid var(--border-color);
}

.creator-img {
    width: 120px; height: 120px; border-radius: 50%;
    object-fit: cover; margin-bottom: 20px;
    border: 3px solid white;
}

.twitch-embed {
    width: 100%; aspect-ratio: 16 / 9;
    background: #000; border: 1px solid #9146FF; margin-bottom: 20px;
}

/* Content Box & Typography */
.content-box, .form-box {
    background: var(--bg-box);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    width: 100%;
    overflow-wrap: break-word;
}

.content-box h2, .form-box h2 {
    font-size: 1.8rem; margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px; color: white; margin-top: 0;
}

.content-box h3 {
    font-size: 1.2rem; color: var(--color-van);
    margin: 30px 0 10px; text-transform: none;
}

.content-box p, .content-box li {
    color: var(--text-muted); line-height: 1.8;
    margin-bottom: 15px; font-size: 0.95rem;
}

.content-box a { color: var(--color-van); text-decoration: underline; }

.divider { height: 1px; background: var(--border-color); margin: 60px 0; }

/* Duo Box (Red Theme) */
.duo-box {
    background: #111; border: 1px solid #333; padding: 30px;
    position: relative; overflow: hidden;
}
.duo-box::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(229,9,20,0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
}
.duo-content { position: relative; z-index: 1; }
.icon-pair { font-size: 2rem; margin-bottom: 20px; color: var(--theme-color); display: flex; gap: 15px; }

/* Text Content Helper */
.text-content h2 { font-size: 2.5rem; margin-bottom: 20px; border-left: 5px solid var(--theme-color); padding-left: 20px; }
.text-content p { color: #ccc; line-height: 1.8; margin-bottom: 20px; font-weight: 300; }

/* =========================================
   6. FORMS & INTERACTIVE
   ========================================= */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; margin-bottom: 8px; color: #aaa;
    font-weight: 600; font-size: 0.9rem; text-transform: uppercase;
}

.form-control {
    width: 100%; padding: 15px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: white; font-family: var(--font-main);
    font-size: 1rem; transition: var(--transition);
}

.form-control:focus {
    outline: none; border-color: var(--color-van);
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
}
textarea.form-control { min-height: 150px; resize: vertical; }

.btn-submit {
    background: var(--color-van); color: #000;
    border: none; padding: 15px 40px;
    font-weight: 900; font-family: var(--font-heading);
    text-transform: uppercase; border-radius: 5px;
    cursor: pointer; transition: 0.3s; width: 100%;
    font-size: 1rem; margin-top: 10px;
}
.btn-submit:hover {
    background: white; transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

/* Success / Booking Messages */
.success-box {
    background: rgba(76, 175, 80, 0.05);
    border: 1px solid var(--color-van);
    border-left: 5px solid var(--color-van);
    padding: 20px; border-radius: 8px;
    margin: 100px 20px 30px;
    display: flex; align-items: center; gap: 20px;
    animation: slideIn 0.5s ease-out forwards;
}

.success-icon {
    font-size: 1.5rem; color: var(--color-van);
    background: rgba(76, 175, 80, 0.15);
    width: 45px; height: 45px; min-width: 45px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

.booking-details {
    display: none; animation: fadeIn 0.5s;
    background: rgba(0,0,0,0.2); padding: 20px;
    border-radius: 5px; margin-bottom: 20px;
    border-left: 3px solid var(--color-con);
}

.booking-banner {
    background: var(--theme-color); color: white;
    text-align: center; padding: 80px 20px;
    background: linear-gradient(45deg, #8a0000, #E50914);
}
.booking-banner h2 { font-size: 2.5rem; margin-bottom: 20px; }
.booking-banner p { max-width: 600px; margin: 0 auto 30px auto; font-size: 1.1rem; }
.contact-btn {
    background: black; color: white; padding: 15px 40px;
    font-weight: bold; text-transform: uppercase;
    letter-spacing: 2px; border: none; cursor: pointer;
}
.contact-btn:hover { background: white; color: black; }

/* =========================================
   7. GALLERY (PORTFOLIO)
   ========================================= */
.gallery-section { padding: 100px 40px; background: #050505; }
.gallery-header { text-align: center; margin-bottom: 60px; }
.gallery-header h2 { font-size: 2.5rem; color: #333; }
.gallery-header span {
    color: var(--theme-color); display: block;
    font-size: 1.5rem; letter-spacing: 3px; margin-top: -10px;
}

.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; max-width: 1600px; margin: 0 auto;
}

.gallery-item {
    position: relative; height: 500px; overflow: hidden; cursor: pointer;
    border-radius: 4px; filter: grayscale(80%); transition: 0.5s;
}

.gallery-item:hover {
    filter: grayscale(0%); transform: scale(1.02);
    z-index: 10; box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

.gallery-item img { width: 100%; height: 100%; object-fit: contain; }

.item-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, black, transparent);
    padding: 30px 20px; transform: translateY(100%); transition: 0.3s;
}
.gallery-item:hover .item-overlay { transform: translateY(0); }

.char-name { font-size: 1.5rem; font-weight: 900; color: var(--theme-color); text-transform: uppercase; }
.char-desc { font-size: 0.9rem; color: #ddd; }

/* =========================================
   8. FOOTER
   ========================================= */
footer {
    padding: 40px; text-align: center;
    background: var(--bg-footer);
    font-size: 0.8rem; color: #888;
}

/* =========================================
   9. ANIMATIONS
   ========================================= */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   10. MOBILE & RESPONSIVE (MERGED)
   ========================================= */
@media (max-width: 900px) {
    /* Header & Navigation */
    header { padding: 0 20px; }
    .burger { display: block; }
    .live-indicator { display: none; }

    .nav-links {
        position: fixed;
        right: 0; top: var(--header-height);
        height: calc(100vh - var(--header-height));
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 40px 30px 100px 30px;
        gap: 25px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-links.nav-active { transform: translateX(0); }

    .nav-links a {
        font-size: 1.5rem; display: block;
        width: 100%; text-align: left;
    }

    /* Mobile Dropdown */
    .dropdown { width: 100%; }
    .dropdown-content {
        position: static; transform: none;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none; border: none;
        text-align: left; padding-left: 15px;
        display: block; max-height: 0; opacity: 0;
        overflow: hidden; transition: all 0.4s ease;
    }

    .dropdown.open .dropdown-content {
        max-height: 500px; opacity: 1;
        margin-top: 15px; margin-bottom: 10px;
    }
    .dropdown-content a { font-size: 1.1rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

    /* Layout & Components */
    .hero-container { flex-direction: column; height: auto; }
    .panel { height: 50vh; width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .panel-label { transform: translate(-50%, -50%) rotate(0deg); }

    .contact-container,
    .container,
    .split-section {
        grid-template-columns: 1fr;
        padding: 40px 15px;
        display: block;
        width: 100%;
        margin: 50px auto;
    }

    .sidebar { position: static; margin-bottom: 30px; width: 100%; }
    .info-card, .form-box, .content-box { width: 100%; }

    /* Red Theme Adjustments */
    .hero-title { font-size: 2.5rem; }
    .text-content h2 { font-size: 2rem; }
    .gallery-item { height: 400px; filter: grayscale(0%); }

    /* Burger Animation */
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
}