/* landing-overlays.css — Era text overlay styles */

/* ============== ERA OVERLAYS ============== */

#era-overlays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.era-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100vh;
}

.era-overlay.active {
    opacity: 1;
}

/* ============== ERA TEXT ELEMENTS ============== */

.era-date {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.era-text {
    font-size: 1.25rem;
    max-width: 500px;
    color: var(--text);
    line-height: 1.6;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.era-script {
    font-size: 2rem;
    font-family: 'Noto Sans Devanagari', sans-serif;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

/* LaTeX code variant for era 7 */
.era-script.era-code {
    font-family: 'JetBrains Mono', monospace;
}

.era-text-secondary {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}
