/* ==========================================================================
   Lighthouse — Mental Health Awareness Month Event Page
   Extends landing.css + pages.css
   Palette: #6B9BD2 (sky blue) + #F4C77B (warm gold)
   ========================================================================== */

/* ---------- Event Icon ---------- */
.event-card .event-icon {
    font-size: 48px;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(107, 155, 210, 0.16), rgba(244, 199, 123, 0.16));
    border-radius: 22px;
    margin: 0 auto 20px;
}

/* ---------- Event Title ---------- */
.event-card h1 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: #6B9BD2;
    margin-bottom: 12px;
}

.event-card .subtitle {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- App Store Badge ---------- */
.event-card .app-badge {
    display: inline-block;
    margin-bottom: 32px;
}

.event-card .app-badge img {
    height: 48px;
    transition: opacity 0.2s;
}

.event-card .app-badge:hover img {
    opacity: 0.85;
}

/* ---------- "What's inside" ---------- */
.inside-section {
    text-align: left;
    margin-bottom: 32px;
    padding: 18px 18px 14px;
    background: var(--color-bg-alt);
    border-radius: 14px;
    border-left: 3px solid #F4C77B;
}

.inside-section h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #6B9BD2;
    margin-bottom: 12px;
}

.inside-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.inside-list li {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.55;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.inside-list li:last-child {
    border-bottom: none;
}

.inside-list strong {
    color: #6B9BD2;
}

.inside-stats {
    font-size: 13.5px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 12px 0 0;
}

.inside-stats a {
    color: #6B9BD2;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

/* ---------- Templates ---------- */
.templates-section {
    text-align: left;
    margin-bottom: 32px;
}

.templates-section h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #6B9BD2;
    margin-bottom: 16px;
}

.template-card {
    background: var(--color-bg-alt);
    border-left: 3px solid #F4C77B;
    padding: 14px 16px;
    margin-bottom: 10px;
    border-radius: 12px;
}

.template-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 4px;
}

.template-note {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.45;
}

/* ---------- Journal Prompts ---------- */
.prompts-section {
    text-align: left;
    margin-bottom: 32px;
}

.prompts-section h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #F4C77B;
    margin-bottom: 16px;
}

.prompt {
    background: var(--color-bg-alt);
    border-left: 3px solid #6B9BD2;
    padding: 14px 16px;
    margin-bottom: 10px;
    border-radius: 12px;
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ---------- Crisis Resources ---------- */
.crisis-resources {
    text-align: left;
    margin-top: 8px;
    padding: 18px 18px 14px;
    background: rgba(107, 155, 210, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(107, 155, 210, 0.22);
}

.crisis-resources h3 {
    font-size: 15px;
    font-weight: 700;
    color: #6B9BD2;
    margin: 0 0 10px;
    letter-spacing: -0.005em;
}

.crisis-resources ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.crisis-resources li {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.55;
    padding: 4px 0;
}

.crisis-resources li strong {
    color: var(--color-text);
}

.crisis-resources a {
    color: #6B9BD2;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    font-weight: 600;
}

.crisis-resources p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 8px 0 0;
    font-style: italic;
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
    .event-card h1 {
        font-size: 1.5em;
    }
}
