/* ================================================
   EXERCICES PAGE - STYLES
   Page des exercices pratiques
   ================================================ */

/* Container */
.exercices-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* ================================================
   HERO SECTION
   ================================================ */
.exercices-hero {
    background: linear-gradient(135deg, #fdfbf7 0%, #f5f1e8 50%, #fffcf5 100%);
    padding: 3rem 2rem;
    text-align: center;
    margin: -2rem -2rem 3rem -2rem;
    border-bottom: 3px solid #D4AF37;
}

.exercices-hero h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.exercices-hero h1 strong {
    font-weight: 700;
    color: #B8941F;
}

.exercices-hero p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ================================================
   BOOK NOTICE
   ================================================ */
.book-notice {
    background: linear-gradient(135deg, #fff9e6 0%, #fffcf5 100%);
    border-left: 5px solid #D4AF37;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.book-notice h3 {
    color: #B8941F;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.book-notice p {
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.book-notice a {
    display: inline-block;
    background: #D4AF37;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.book-notice a:hover {
    background: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184,148,31,0.3);
}

/* ================================================
   TABS NAVIGATION
   ================================================ */
.exercise-tabs {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s;
    font-size: 1rem;
}

.tab-button:hover {
    color: #B8941F;
}

.tab-button.active {
    color: #B8941F;
    border-bottom-color: #D4AF37;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

/* ================================================
   EXERCISE CARDS
   ================================================ */
.exercise-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #D4AF37;
}

.exercise-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.exercise-card .exercise-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.exercise-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.exercise-meta-item span:first-child {
    font-weight: 700;
}

.exercise-card .exercise-description {
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.exercise-card .exercise-steps {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.exercise-card .exercise-steps h4 {
    color: #B8941F;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.exercise-card .exercise-steps ol {
    margin-left: 1.5rem;
    color: #2c3e50;
}

.exercise-card .exercise-steps li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.exercise-card .exercise-tips {
    background: #fff9e6;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    border-left: 3px solid #D4AF37;
}

.exercise-tips h5 {
    color: #B8941F;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.exercise-tips p {
    color: #2c3e50;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Style pour actions/sensations */
.action-note {
    background: linear-gradient(135deg, #fff8dc 0%, #fffcf5 100%);
    border-left: 3px solid #D4AF37;
    padding: 0.5rem 1rem;
    font-style: italic;
    display: inline-block;
    margin: 0.25rem 0;
    border-radius: 4px;
    color: #6c757d;
    font-size: 0.95rem;
}

/* ================================================
   SCENARIO CARDS
   ================================================ */
.scenario-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.scenario-card .scenario-title {
    color: #B8941F;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.scenario-card .scenario-context {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-style: italic;
    color: #6c757d;
    font-size: 0.95rem;
}

.scenario-modes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.mode-reaction {
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid;
}

.mode-reaction.intimidateur {
    background: #fff5f5;
    border-color: #e74c3c;
}

.mode-reaction.interrogateur {
    background: #f0f8ff;
    border-color: #3498db;
}

.mode-reaction.plaintif {
    background: #f9fdf7;
    border-color: #27ae60;
}

.mode-reaction.indifferent {
    background: #fafafa;
    border-color: #6b7c93;
}

.mode-reaction h5 {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.mode-reaction.intimidateur h5 { color: #e74c3c; }
.mode-reaction.interrogateur h5 { color: #3498db; }
.mode-reaction.plaintif h5 { color: #27ae60; }
.mode-reaction.indifferent h5 { color: #6b7c93; }

.mode-reaction p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #2c3e50;
    margin: 0;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
    .exercices-hero h1 {
        font-size: 1.8rem;
    }
    
    .exercise-tabs {
        gap: 0.5rem;
    }
    
    .tab-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .scenario-modes {
        grid-template-columns: 1fr;
    }
    
    .exercise-card,
    .scenario-card {
        padding: 1.5rem 1rem;
    }
}
