/* Pre-Workshop Briefing Styles */

:root {
    --sal-red: #8C1515;
    --sal-warm: #B83A4B;
    --accent-blue: #006CB8;
    --accent-green: #008566;
    --accent-orange: #E98300;
    --accent-purple: #53284F;
    --light-bg: #FAF9F7;
    --card-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light-bg);
    color: #2e2d29;
    line-height: 1.7;
}

/* RTL Support */
[dir="rtl"] body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    line-height: 1.9;
}

/* Language Selector */
.lang-bar {
    background: #2e2d29;
    padding: 0.5rem 0;
}
.lang-selector {
    display: flex;
    gap: 0.25rem;
    justify-content: flex-end;
}
[dir="rtl"] .lang-selector {
    justify-content: flex-start;
}
.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.lang-btn:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}
.lang-btn.active {
    background: white;
    color: #2e2d29;
    border-color: white;
}

/* Hero Header */
.hero {
    background: linear-gradient(135deg, var(--sal-red) 0%, var(--sal-warm) 100%);
    color: white;
    padding: 3rem 0;
}
.hero h1 {
    font-weight: 700;
    font-size: 2.25rem;
}
.hero .lead {
    font-size: 1.15rem;
    opacity: 0.95;
}
.badge-time {
    background: rgba(255,255,255,0.2);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

/* Sections */
section {
    padding: 3rem 0;
}
.section-title {
    font-weight: 700;
    color: var(--sal-red);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
.section-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Question Cards */
.question-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--card-shadow);
    border-left: 4px solid var(--accent-blue);
    transition: transform 0.2s ease;
}
[dir="rtl"] .question-card {
    border-left: none;
    border-right: 4px solid var(--accent-blue);
}
.question-card:hover {
    transform: translateY(-2px);
}
.question-card.q1 { border-left-color: var(--accent-orange); }
.question-card.q2 { border-left-color: var(--accent-purple); }
.question-card.q3 { border-left-color: var(--accent-green); }
[dir="rtl"] .question-card.q1 { border-right-color: var(--accent-orange); border-left-color: transparent; }
[dir="rtl"] .question-card.q2 { border-right-color: var(--accent-purple); border-left-color: transparent; }
[dir="rtl"] .question-card.q3 { border-right-color: var(--accent-green); border-left-color: transparent; }

.question-number {
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.15;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
}
[dir="rtl"] .question-number {
    right: auto;
    left: 1rem;
}
.question-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.question-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}
.question-icon {
    margin-right: 0.5rem;
}
[dir="rtl"] .question-icon {
    margin-right: 0;
    margin-left: 0.5rem;
}

/* Learning Difference Categories */
.ld-category {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--card-shadow);
}
.ld-category h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sal-red);
    margin-bottom: 1rem;
}
.ld-pill {
    display: inline-block;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: 1px solid #eee;
}
.ld-pill:hover {
    background: #e8e8e8;
    border-color: #ddd;
}
.ld-pill strong {
    color: #333;
}
.ld-pill span {
    color: #666;
    font-size: 0.85rem;
}

/* Example Box */
.example-box {
    background: linear-gradient(135deg, #fefefe 0%, #f8f7f5 100%);
    border: 2px solid #e8e6e3;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}
.example-label {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--accent-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
[dir="rtl"] .example-label {
    left: auto;
    right: 24px;
}
.example-box h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.example-question {
    background: white;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    border-left: 3px solid;
}
[dir="rtl"] .example-question {
    border-left: none;
    border-right: 3px solid;
}
.example-question.q1 { border-left-color: var(--accent-orange); }
.example-question.q2 { border-left-color: var(--accent-purple); }
.example-question.q3 { border-left-color: var(--accent-green); }
[dir="rtl"] .example-question.q1 { border-right-color: var(--accent-orange); }
[dir="rtl"] .example-question.q2 { border-right-color: var(--accent-purple); }
[dir="rtl"] .example-question.q3 { border-right-color: var(--accent-green); }

.example-question .label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}
.example-question.q1 .label { color: var(--accent-orange); }
.example-question.q2 .label { color: var(--accent-purple); }
.example-question.q3 .label { color: var(--accent-green); }
.example-question p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

/* Resource Cards */
.resource-section {
    background: white;
}
.resource-type {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.resource-type.video { color: var(--accent-orange); }
.resource-type.article { color: var(--accent-blue); }

.resource-card {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.2s ease;
    border: 1px solid #eee;
}
.resource-card:hover {
    background: #f0efed;
    border-color: #ddd;
    color: inherit;
    transform: translateX(4px);
}
[dir="rtl"] .resource-card:hover {
    transform: translateX(-4px);
}
.resource-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}
.resource-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0.25rem 0 0 0;
}
.resource-card .bi {
    color: #999;
}

/* Callout */
.callout {
    background: #FFF8E7;
    border-left: 4px solid var(--accent-orange);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
}
[dir="rtl"] .callout {
    border-left: none;
    border-right: 4px solid var(--accent-orange);
    border-radius: 8px 0 0 8px;
}
.callout-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}
.callout p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

/* Checklist Items */
.checklist-item {
    background: white;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: #2e2d29;
    color: rgba(255,255,255,0.7);
    padding: 2rem 0;
    font-size: 0.9rem;
}
.footer a {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 1.75rem; }
    section { padding: 2rem 0; }
    .ld-pill { font-size: 0.85rem; padding: 0.4rem 0.8rem; }
    .lang-selector { justify-content: center; }
}
