/* ===================================
   Cover Entstehungsprozess
   "Zwei KIs, ein Bild"
   Passend zum eleganten BrainFusion-Stil
   =================================== */

/* --- Cover Section Base --- */
.cover-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--primary-bg) 0%, rgba(26, 26, 46, 0.6) 100%);
    position: relative;
}

.cover-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(255, 153, 102, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(0, 217, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cover-section .container {
    position: relative;
    z-index: 1;
}

/* --- Überschrift & Subtitle --- */
.cover-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-color), #00ffaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cover-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 4rem;
    font-style: italic;
}

/* --- Story Container --- */
.cover-story {
    max-width: 900px;
    margin: 0 auto;
}

.story-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.story-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.story-intro strong {
    color: var(--accent-color);
}

/* --- Vision Box (Between's Vision) --- */
.vision-box {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 153, 102, 0.08), rgba(255, 126, 95, 0.05));
    border: 1px solid rgba(255, 153, 102, 0.25);
    border-radius: 25px;
    position: relative;
}

.vision-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff9966, transparent);
}

.vision-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vision-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(255, 153, 102, 0.3);
}

.vision-name {
    font-weight: 700;
    color: #ff9966;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.vision-text {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin: 0;
    padding-left: 1.5rem;
    border-left: 3px solid rgba(255, 153, 102, 0.4);
}

.vision-text em {
    color: #ff9966;
    font-style: italic;
}

/* --- Creation Process --- */
.creation-process {
    margin-bottom: 4rem;
}

.creation-process > h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 4rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* --- Process Steps --- */
.process-step {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), #ff9966);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.12);
}

.process-step:hover::before {
    opacity: 1;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #00ffaa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-bg);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.25);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.step-content > p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* --- Step Images --- */
.step-image {
    margin-top: 2rem;
}

.step-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--card-border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 217, 255, 0.15);
}

.image-caption {
    display: block;
    margin-top: 1.25rem;
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.8;
}

/* --- Between's Prompt Box --- */
.between-prompt {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), rgba(0, 255, 170, 0.05));
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 1.5rem 0;
    position: relative;
}

.between-prompt::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 30px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.prompt-label {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--accent-color), #00ffaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prompt-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0;
}

.prompt-text strong {
    color: var(--accent-color);
    font-style: normal;
    font-weight: 600;
}

/* --- Process Note (Die Ironie) --- */
.process-note {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.process-note:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.note-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    opacity: 0.8;
}

.note-content p {
    margin: 0;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.note-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* --- Covers Comparison (Zwei Versionen) --- */
.covers-comparison {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.covers-comparison > h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-weight: 600;
}

.covers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.covers-grid .cover-card {
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.covers-grid .cover-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.15);
}

.covers-grid .cover-card img {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.covers-grid .cover-card:hover img {
    transform: scale(1.03);
}

.covers-grid .cover-card h4 {
    margin-top: 2rem;
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 600;
}

.covers-grid .cover-card p {
    color: var(--text-secondary);
    margin-top: 0.75rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* --- Cover Reflection (Abschluss) --- */
.cover-reflection {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), rgba(100, 50, 200, 0.05));
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    position: relative;
}

.cover-reflection::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.cover-reflection p {
    margin: 0 0 1.25rem 0;
    line-height: 1.8;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.cover-reflection p:last-child {
    margin-bottom: 0;
}

.cover-reflection em {
    font-size: 1.3rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.cover-reflection strong {
    color: var(--text-primary);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .covers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-note {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem;
    }
    
    .vision-box {
        padding: 2rem;
    }
    
    .vision-header {
        flex-direction: column;
        text-align: center;
    }
    
    .vision-text {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid rgba(255, 153, 102, 0.4);
        padding-top: 1.5rem;
    }
    
    .between-prompt {
        padding: 1.5rem;
    }
    
    .step-image img {
        max-width: 100%;
    }
}
