:root {
    --background: #0d0a07;
    --text: #e6d7b4;
    --ochre: #d4a037;
    --cyan: #00b6c8;
    --terminal-cyan: #336369;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 35%,
            #130d09 0%,
            var(--background) 65%
        );
}

.animation-scene {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-line {
    display: flex;
    color: var(--text);
    letter-spacing: clamp(0.3rem, 2.5vw, 1.6rem);
    position: relative;
    top: -100px;
}

.logo-line span {
    display: inline-block;
    font-size: clamp(2.2rem, 8vw, 5rem);
    font-family: "Jura",sans-serif;
    font-weight: 300;
    transition: 
        transform 500ms ease-out,
        text-shadow 2000ms ease;
}

.logo-line span.activating {
    transform: scale(1.08);
    color: #f0e3c0;

    text-shadow:
        0 0 6px rgba(255, 245, 220, 0.7),
        0 0 8px rgba(224, 195, 148, 0.5),
        0 0 18px rgba(45, 212, 191, 0.45);

    transition:
        transform 180ms ease,
        color 180ms ease,
        text-shadow 180ms ease;
}

.logo-line span.settled {
    text-shadow:
        0 4px 7px rgba(0, 0, 0, 0.75),
        0 0 14px rgba(220, 230, 225, 0.45);
}

@keyframes breathe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

.logo-line .accent-a,
.logo-line .accent-i {
    transition:
        color 6000ms ease,
        text-shadow 3000ms ease;
}

.logo-line.breathing {
    animation: breathe 6s ease-in-out infinite;
}

.logo-line.awakened .accent-a {
    color: var(--ochre);
    text-shadow:
        0 0 8px rgba(210, 150, 60, 0.45),
        0 0 18px rgba(210, 150, 60, 0.25);
}

.logo-line.awakened .accent-i {
    color: var(--cyan);
    text-shadow:
        0 0 8px rgba(45, 212, 191, 0.5),
        0 0 18px rgba(45, 212, 191, 0.28);
}

.project-output {
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translateX(-50.9%);
    width: 100%;
    text-align: center;
}

#project-title {
    font-family: monospace;
    white-space: pre-line;
    color: var(--terminal-cyan);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    letter-spacing: 0.04rem;

    text-shadow:
        2px 0 8px rgba(0, 182, 200, 0.72),
        0 2px 5px rgba(0, 0, 0, 0.55);
}

#project-cursor {
    /*display: inline-block;*/
    position: absolute;
    margin-left: 0.08rem;
    color: var(--terminal-cyan);
    opacity: 0;
}

#project-cursor.active {
    opacity: 1;
    animation: cursorBlink 700ms steps(1) infinite;
}

#project-cursor.fade-out {
    animation: cursorFade 1200ms ease forwards;
}

@keyframes cursorBlink {
    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

@keyframes cursorFade {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/*
.dev-overlay {
    position: fixed;
    left: 0.75rem;
    bottom: 0.75rem;
    z-index: 1000;

    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(230, 215, 180, 0.25);
    border-radius: 0.4rem;

    background-color: rgba(13, 10, 7, 0.8);
    color: var(--text);

    font-family: monospace;
    font-size: 0.75rem;
    line-height: 1.4;

    pointer-events: none;
}
    */