/*------------------------------------*\
  #L0R3 PAGE STYLING
\*------------------------------------*/

.hero-l0r3 {
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url('../img/projectLore/l0r3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-l0r3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-text {
    font-family: 'Aquire';
    font-size: 2.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.l0r3-container {
    padding: 2rem;
    background: var(--site-theme-primary);
    min-height: calc(100vh - 80px);
}

.l0r3-status {
    color: var(--site-theme-secondary);
    font-family: 'Aquire', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    animation: flicker 2s infinite;
}

.l0r3-output {
    color: white;
    font-family: 'AquireLight', 'Courier New', monospace;
    font-size: 1.1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    background: none;
    white-space: pre-wrap;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    background-color: var(--site-theme-quaternary-darker);

    line-height: 1.8;
}

.l0r3-image {
    max-width: 300px;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.l0r3-image:not(.hidden) {
    opacity: 1;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.8;
  }
}

