/* ==========================================================================
   Lighthouse — Stress Awareness Event Page
   Extends landing.css + pages.css
   ========================================================================== */

/* ---------- 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(171, 32, 143, 0.12), rgba(6, 125, 222, 0.12));
    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.1;
    color: #ab208f;
    margin-bottom: 8px;
}

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

/* ---------- Stress Score Gauge ---------- */
.gauge-section {
    margin-bottom: 32px;
}

.gauge-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 12px;
}

.gauge-bg {
    fill: none;
    stroke-width: 12;
    opacity: 0.2;
    transition: stroke 1.5s ease;
}

.gauge-fill {
    fill: none;
    stroke-width: 12;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease, stroke 1.5s ease;
}

.gauge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.gauge-score {
    font-size: 36px;
    font-weight: 700;
    font-family: -apple-system, system-ui, sans-serif;
    font-variation-settings: 'ROND' 1;
    letter-spacing: -1px;
    line-height: 1;
    transition: color 1.5s ease;
}

.gauge-max {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1;
    margin-top: 2px;
}

.gauge-label {
    font-size: 17px;
    font-weight: 600;
    transition: color 1.5s ease;
    margin-bottom: 4px;
}

.gauge-caption {
    font-size: 14px;
    color: var(--color-text-muted);
    max-width: 320px;
    margin: 0 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;
}

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

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

.template-card {
    background: var(--color-bg-alt);
    border-left: 3px solid #067dde;
    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);
}

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

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

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

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