/**
 * IAM Gatekeepers - Full Screen Boot Loader Styling
 */

/* Boot Loader Overlay */
#boot-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

/* Boot Sequence Container */
#boot-sequence-container {
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

/* Boot Sequence Lines */
#boot-sequence-lines {
    margin-top: 20px;
}

#boot-sequence-lines p {
    color: #00ff00;
    font-family: 'VT323', 'Share Tech Mono', monospace;
    font-size: 20px;
    margin: 15px 0;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* Main Site Content - Initially Hidden */
#main-site-content {
    display: none;
    opacity: 0;
    transition: opacity 1s ease;
}

/* Optional: Add scanline effect to boot loader */
#boot-loader::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1;
}

/* Content above scanlines */
#boot-sequence-container {
    position: relative;
    z-index: 2;
}

/* Logo in boot screen (optional) */
#boot-logo {
    max-width: 300px;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.4));
    opacity: 0;
    animation: fadeInLogo 1s ease forwards;
}

@keyframes fadeInLogo {
    to {
        opacity: 1;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #boot-sequence-lines p {
        font-size: 16px;
        margin: 10px 0;
    }

    #boot-logo {
        max-width: 200px;
    }
}
