/* --- SEKTION 6: AI LAB DETAIL --- */

.ai-lab-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    background: transparent;
}

.ai-lab-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 60px;
}

/* --- LINKE SPALTE: TEXT --- */
.ai-text-col {
    flex: 1;
    max-width: 500px;
}

.ai-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0 0 24px 0;
}

.ai-desc {
    font-size: 1.05rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 32px;
}

.ai-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e4e4e7; /* Helles Weissgrau */
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.bullet-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-orange);
}

/* --- RECHTE SPALTE: VISUAL (APP MOCKUP) --- */
.ai-visual-col {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    
    /* NEU: Erzeugt den 3D-Raum. Je kleiner der Wert, desto extremer die Perspektive. */
    perspective: 1200px;
}

/* Wir nutzen .app-window Styles von Section 2, überschreiben aber Größe */
.ai-lab-window {
    height: 500px !important;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.08);
    background-color: #0c0b09; /* Sicherstellen, dass es dunkel ist */

    /* NEU: DER STATISCHE 3D-EFFEKT */
    /* rotateY(15deg): Dreht die rechte Seite nach hinten -> Fenster schaut nach links */
    /* rotateX(3deg): Kippt es minimal nach hinten für mehr Realismus */
    transform: rotateY(-15deg) rotateX(3deg);

    /* NEU: Realistischerer 3D-Schatten */
    /* Der Schatten fällt jetzt nach unten links (-30px horizontal) */
    box-shadow: 80px 50px -30px rgba(0, 0, 0, 0.5);

    /* Sorgt für schärferes Rendering im 3D-Modus */
    transform-style: preserve-3d;
    backface-visibility: hidden;
    
    /* Optional: Ein sanfter Hover-Effekt, der das Fenster etwas "aufrichtet" */
    transition: all 0.4s ease-out;
}

/* AI Lab Content Styling */
.ai-lab-content {
    display: flex;
    flex-direction: column;
    padding: 30px !important;
}

.ai-lab-header {
    margin-bottom: 24px;
}
.ai-lab-header h2 {
    font-size: 1.5rem;
    color: #FFDEBA; /* Helles Orange/Beige wie im Screenshot */
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ai-lab-header p {
    color: #7d8fac; /* Bläuliches Grau */
    font-size: 0.9rem;
    margin: 0;
}

/* Workspace Grid */
.ai-lab-workspace {
    display: flex;
    gap: 20px;
    flex: 1;
}

/* Dropzone (Links) */
.ai-dropzone {
    flex: 1;
    border: 2px dashed rgba(255,255,255,0.1);
    border-radius: 12px;
    background: rgba(255,255,255,0.01);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Button nach unten drücken */
    padding: 20px;
    position: relative;
}

.drop-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #52525b;
    font-size: 0.85rem;
}

.ai-action-btn {
    width: 100%;
    background-color: #3b3f51; /* Dunkles Blau-Grau */
    color: #cdd6f4;
    padding: 10px 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.ai-action-btn:hover {
    background-color: #4b5066;
}

/* Result Box (Rechts) */
.ai-result-box {
    flex: 1;
    background-color: #09090b; /* Fast schwarz */
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.result-header span {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}
.badge-copy {
    background: rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem !important;
    color: #9ca3af !important;
    cursor: pointer;
}

.result-body {
    flex: 1;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1000px) {
    .ai-lab-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .ai-features-list li {
        justify-content: center;
    }
    
    .ai-visual-col {
        width: 100%;
    }
    
    .ai-lab-workspace {
        flex-direction: column;
        height: auto;
    }
    .ai-dropzone, .ai-result-box {
        height: 200px;
    }
}