/* ========================================= */
/*     BARISTA FIRE MODULE 2 - CLEAN CSS    */
/* ========================================= */

.bfj-module-2,
.bfj-module-2 * {
    box-sizing: border-box;
}

.bfj-module-2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: white;
    min-height: 100vh;
    overflow-x: hidden;
    padding: 40px 0;
}

/* ===== CONTAINER (GEEN GAP!) ===== */

.bfj-module-2 .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

/* Grote schermen */
@media (min-width: 1024px) {
    .bfj-module-2 .container {
        max-width: 1400px;
    }
}

/* ===== HEADER ===== */

.bfj-module-2 .header {
    background: white;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 10px; /* Klein! Net als Module 1 */
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    text-align: center;
    border-left: 8px solid #009688;
}

.bfj-module-2 .module-tag {
    display: inline-block;
    background: #e0f2f1;
    color: #004d40;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bfj-module-2 .header h1 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3748;
}

.bfj-module-2 .header .subtitle {
    font-size: 1.2em;
    color: #009688;
    margin-bottom: 12px;
    font-weight: 600;
}

.bfj-module-2 .header p {
    color: #718096;
    margin-bottom: 0;
}

/* ===== INTRO BOX ===== */

.bfj-module-2 .intro-box {
    background: #f7fafc;
    border-left: 4px solid #009688;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
}

.bfj-module-2 .intro-box h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.bfj-module-2 .intro-box h3 {
    font-size: 1.3em;
    margin: 25px 0 15px;
}

.bfj-module-2 .intro-box p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.bfj-module-2 .intro-box ul {
    margin: 20px 0;
    padding-left: 25px;
}

.bfj-module-2 .intro-box li {
    margin-bottom: 10px;
}

/* ===== PROGRESS BAR ===== */

.bfj-module-2 .progress-bar {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.bfj-module-2 .progress {
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
}

.bfj-module-2 .progress-fill {
    height: 100%;
    width: 0%;
    background: #009688;
    transition: width 0.5s ease;
}

.bfj-module-2 .progress-text {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    color: #4a5568;
    writing-mode: horizontal-tb;
    white-space: nowrap;
}

/* ===== THEORY BLOCK ===== */

.bfj-module-2 .theory-block {
    background: #e0f2f1;
    border-left: 5px solid #b2dfdb;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    display: none;
}

.bfj-module-2 .theory-block.active {
    display: block;
}

.bfj-module-2 .theory-block h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #004d40;
}

.bfj-module-2 .theory-block h4 {
    font-size: 1.1em;
    margin: 20px 0 12px;
    color: #00695c;
}

.bfj-module-2 .theory-block p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ===== STEPS ===== */

.bfj-module-2 .step {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    display: none;
}

.bfj-module-2 .step.active {
    display: block;
}

.bfj-module-2 .step h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bfj-module-2 .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #009688;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

/* ===== FORM ELEMENTS ===== */

.bfj-module-2 .question-group {
    margin-bottom: 20px;
}

.bfj-module-2 .question-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3748;
}

.bfj-module-2 .input-field,
.bfj-module-2 .textarea-field {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.bfj-module-2 .textarea-field {
    min-height: 120px;
    resize: vertical;
}

.bfj-module-2 .helper-text {
    font-size: 0.85em;
    color: #718096;
    margin-top: 5px;
}

/* ===== BUTTONS ===== */

.bfj-module-2 .buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.bfj-module-2 .btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    min-width: 140px;
    transition: all 0.3s;
    font-size: 16px;
}

.bfj-module-2 .btn-primary {
    background: #009688;
    color: white;
    border: none;
}

.bfj-module-2 .btn-primary:hover {
    transform: translateY(-2px);
    background: #00796b;
}

.bfj-module-2 .btn-secondary {
    background: #f7fafc;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.bfj-module-2 .btn-secondary:hover {
    background: #edf2f7;
}

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

@media (max-width: 768px) {
    .bfj-module-2 {
        padding: 20px 0;
    }

    .bfj-module-2 .container {
        padding: 10px;
    }

    .bfj-module-2 .header {
        padding: 25px 15px;
        margin-bottom: 10px;
        border-radius: 12px;
    }

    .bfj-module-2 .header h1 {
        font-size: 1.8em;
        line-height: 1.3;
    }

    .bfj-module-2 .header .subtitle {
        font-size: 1.1em;
    }

    .bfj-module-2 .intro-box,
    .bfj-module-2 .progress-bar,
    .bfj-module-2 .theory-block,
    .bfj-module-2 .step {
        margin-bottom: 15px;
        padding: 20px 15px;
        border-radius: 10px;
    }

    .bfj-module-2 .step h2 {
        font-size: 1.5em;
        line-height: 1.3;
    }

    .bfj-module-2 .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9em;
    }

    .bfj-module-2 .buttons {
        flex-direction: column;
        gap: 12px;
    }

    .bfj-module-2 .btn {
        width: 100%;
    }
}