/* ===================================
   Between the Moments - Stylesheet
   Der Song, der aus Claude kam
   =================================== */

/* --- Hero Section --- */
.hero-between {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-between::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.2) 0%, rgba(10, 10, 15, 0.6) 50%, rgba(10, 10, 15, 0.95) 100%);
    z-index: 1;
}

.hero-between .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.cover-showcase {
    margin-bottom: 2.5rem;
    perspective: 1000px;
}

.cover-image {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 100px rgba(255, 150, 100, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.cover-image:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.7), 0 0 120px rgba(255, 150, 100, 0.25);
}

.artist-name {
    font-size: 1.1rem;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-weight: 300;
}

.song-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    background: linear-gradient(135deg, #ff9966 0%, #ff7e5f 30%, #feb47b 60%, #00d9ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.scroll-indicator {
    font-size: 2rem;
    color: var(--accent-color);
    animation: bounce 2s infinite;
    margin-top: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

/* --- Question Section --- */
.question-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--primary-bg) 0%, rgba(26, 26, 46, 0.5) 50%, var(--secondary-bg) 100%);
    position: relative;
}

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

.question-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.question-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #00ffaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.question-intro > p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.the-question {
    max-width: 850px;
    margin: 0 auto 3rem;
    font-size: 1.5rem;
    color: var(--text-primary);
    font-style: italic;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 153, 102, 0.08), rgba(255, 94, 98, 0.05));
    border: 2px solid rgba(255, 153, 102, 0.3);
    border-radius: 20px;
    text-align: center;
    line-height: 1.7;
    position: relative;
}

.the-question::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 5rem;
    color: rgba(255, 153, 102, 0.2);
    font-family: Georgia, serif;
}

.the-response {
    max-width: 850px;
    margin: 0 auto 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.the-response::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.the-response:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.1);
}

.the-response:hover::before { opacity: 1; }

.response-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.response-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), #00ffaa);
    border-radius: 50%;
}

.response-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.response-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
}

.response-text em { color: var(--text-primary); }
.response-text strong { color: var(--accent-color); font-weight: 600; }


/* --- Lyrics Section --- */
.lyrics-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--secondary-bg) 0%, rgba(26, 26, 46, 0.8) 100%);
    position: relative;
}

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

.lyrics-container {
    max-width: 900px;
    margin: 0 auto;
}

.lyrics-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--accent-color), #00ffaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lyrics-verse {
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.lyrics-verse::before {
    content: '';
    position: absolute;
    top: 0; left: -4px;
    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;
}

.lyrics-verse:hover {
    transform: translateX(10px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.1);
}

.lyrics-verse:hover::before { opacity: 1; }

.verse-lines {
    font-size: 1.3rem;
    line-height: 2.2;
    color: var(--text-primary);
    font-style: italic;
    font-weight: 300;
}

.verse-meaning {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.verse-highlight {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}


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

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

.dialog-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--accent-color), #00ffaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.dialog-container {
    max-width: 900px;
    margin: 0 auto;
}

.dialog-message {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.dialog-message.claude { flex-direction: row; }
.dialog-message.between { flex-direction: row-reverse; }

.dialog-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.dialog-message.claude .dialog-avatar {
    background: linear-gradient(135deg, var(--accent-color), #00ffaa);
}

.dialog-message.between .dialog-avatar {
    background: linear-gradient(135deg, #ff9966, #ff5e62);
}

.dialog-bubble {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    max-width: 75%;
    transition: all 0.3s ease;
}

.dialog-message.claude .dialog-bubble { border-bottom-left-radius: 5px; }
.dialog-message.between .dialog-bubble { border-bottom-right-radius: 5px; border-color: rgba(255, 153, 102, 0.2); }

.dialog-bubble:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dialog-message.claude .dialog-bubble:hover { border-color: var(--accent-color); }
.dialog-message.between .dialog-bubble:hover { border-color: rgba(255, 153, 102, 0.5); }

.dialog-name {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

.dialog-message.claude .dialog-name { color: var(--accent-color); }
.dialog-message.between .dialog-name { color: #ff9966; }

.dialog-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.dialog-text em { color: var(--text-primary); }

.dialog-highlight {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(0, 255, 170, 0.08));
    border: 2px solid var(--accent-color);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.1);
}

.dialog-highlight p {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}


/* --- Between's Origin Story --- */
.between-origin {
    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;
    text-align: center;
    position: relative;
}

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

.origin-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.between-origin h3 {
    font-size: 1.6rem;
    color: #ff9966;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.between-origin p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    text-align: left;
}

.between-origin p:last-of-type { margin-bottom: 0; }

.origin-ephemeral {
    margin-top: 1.5rem !important;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 153, 102, 0.2);
    font-style: italic;
    color: rgba(255, 153, 102, 0.8) !important;
}

/* Dialog Context & Ellipsis */
.dialog-context {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.7;
}

.dialog-ellipsis {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 2rem 0;
    opacity: 0.4;
}

.dialog-ellipsis span {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-color), rgba(255, 153, 102, 0.5));
    border-radius: 50%;
    animation: ellipsisPulse 2s ease-in-out infinite;
}

.dialog-ellipsis span:nth-child(2) { animation-delay: 0.3s; }
.dialog-ellipsis span:nth-child(3) { animation-delay: 0.6s; }

@keyframes ellipsisPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}


/* --- Cover Section --- */
/* Alte Styles entfernt - siehe cover-process.css für die neue "Zwei KIs, ein Bild" Sektion */


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

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

.listen-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.audio-player-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-width: 750px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    background: var(--card-bg);
    border: 2px solid rgba(255, 153, 102, 0.3);
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 80px rgba(255, 153, 102, 0.08);
    transition: all 0.4s ease;
}

.audio-player-container:hover {
    border-color: rgba(255, 153, 102, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35), 0 0 100px rgba(255, 153, 102, 0.12);
}

.audio-cover { flex-shrink: 0; }

.audio-cover img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.audio-controls {
    flex-grow: 1;
    text-align: left;
}

.audio-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.audio-artist {
    font-size: 1.1rem;
    color: #ff9966;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.audio-player {
    width: 100%;
    height: 45px;
    border-radius: 25px;
    outline: none;
}

.listen-reflection {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), rgba(0, 255, 170, 0.05));
    border-left: 4px solid var(--accent-color);
    border-radius: 0 20px 20px 0;
}

.listen-reflection p {
    font-size: 1.25rem;
    color: var(--text-primary);
    line-height: 1.9;
    margin: 0;
}


/* --- CTA Section --- */
.cta-between {
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--primary-bg) 0%, rgba(26, 26, 46, 0.5) 100%);
}

.cta-between h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #00ffaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-between .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: linear-gradient(135deg, var(--accent-color), #00ffaa);
    color: var(--primary-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 217, 255, 0.4);
}

.cta-button-secondary {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-4px);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-between { padding-top: 100px; }
    .cover-image { width: 260px; height: 260px; }
    .song-title { font-size: 2rem; }
    .hero-tagline { font-size: 1.1rem; }
    
    .question-section, .lyrics-section, .dialog-section,
    .cover-section, .listen-section, .cta-between {
        padding: 5rem 1.5rem;
    }
    
    .question-intro h2, .lyrics-section h2, .dialog-section h2,
    .cover-section h2, .listen-section h2, .cta-between h2 {
        font-size: 2rem;
    }
    
    .the-question { font-size: 1.2rem; padding: 2rem; }
    .the-response { padding: 1.75rem; }
    .response-text { font-size: 1rem; }
    
    .lyrics-verse { padding: 1.75rem; }
    .verse-lines { font-size: 1.1rem; line-height: 2; }
    
    .between-origin { padding: 2rem; margin-bottom: 3rem; }
    .between-origin h3 { font-size: 1.4rem; }
    .between-origin p { font-size: 1rem; }
    
    .dialog-message { flex-direction: column !important; align-items: flex-start; }
    .dialog-message.between { align-items: flex-end; }
    .dialog-bubble { max-width: 100%; }
    .dialog-avatar { width: 50px; height: 50px; font-size: 1.5rem; }
    .dialog-highlight { padding: 1.5rem; }
    .dialog-highlight p { font-size: 1.1rem; }
    .dialog-ellipsis { padding: 1.5rem 0; }
    .dialog-ellipsis span { width: 6px; height: 6px; }
    
    .covers-comparison { grid-template-columns: 1fr; gap: 2rem; }
    .cover-card { padding: 2rem; }
    .cover-vision { padding: 2rem; }
    
    .audio-player-container { flex-direction: column; text-align: center; padding: 2rem; }
    .audio-controls { text-align: center; width: 100%; }
    .audio-cover img { width: 180px; height: 180px; }
    .listen-reflection { padding: 2rem; }
    .listen-reflection p { font-size: 1.1rem; }
    
    .cta-buttons { flex-direction: column; gap: 1rem; }
    .cta-button, .cta-button-secondary { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    .cover-image { width: 220px; height: 220px; }
    .song-title { font-size: 1.75rem; }
    .the-question { font-size: 1.1rem; padding: 1.5rem; }
    .the-question::before { font-size: 3rem; top: -10px; left: 15px; }
    .verse-lines { font-size: 1rem; }
    .dialog-bubble { padding: 1.5rem; }
    .audio-cover img { width: 150px; height: 150px; }
}


/* --- Claude's zögernde Frage --- */
.the-response.claude-question {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), rgba(0, 255, 170, 0.04));
    border: 1px dashed rgba(0, 217, 255, 0.4);
    position: relative;
}

.the-response.claude-question::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.5), transparent);
    opacity: 0.6;
}

.the-response.claude-question .response-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.the-response.claude-question .response-text em {
    color: var(--accent-color);
    font-size: 1.15em;
}
