/*
Theme Name: LAP43 Coming Soon
Theme URI: https://lap43.ca/
Author: LAP43
Description: Minimal LAP43 coming soon landing page.
Version: 1.0.0
Text Domain: lap43-coming-soon
*/

:root {
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: #050505;
}

body {
    min-height: 100vh;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.lap43-coming-soon {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 4.5rem);
    padding: 2rem;
    text-align: center;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 44%, rgba(218, 0, 0, 0.14), transparent 30%),
        linear-gradient(145deg, #020202 0%, #090909 55%, #020202 100%);
}

.lap43-coming-soon::before,
.lap43-coming-soon::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 46vw;
    max-width: 650px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d40000, transparent);
    opacity: 0.55;
    filter: blur(0.2px);
}

.lap43-coming-soon::before {
    top: 12%;
    right: -8%;
    transform: rotate(-28deg);
}

.lap43-coming-soon::after {
    bottom: 13%;
    left: -8%;
    transform: rotate(-28deg);
}

.lap43-logo {
    display: block;
    width: min(720px, 88vw);
    height: auto;
    filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.75));
    animation: lap43-logo-enter 900ms cubic-bezier(.2,.8,.2,1) both;
}

.lap43-coming-text {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.2rem, 7vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: clamp(0.08em, 1vw, 0.18em);
    text-transform: uppercase;
    text-shadow:
        0 3px 0 rgba(140, 0, 0, 0.8),
        0 0 32px rgba(220, 0, 0, 0.25);
    animation: lap43-text-enter 900ms 140ms cubic-bezier(.2,.8,.2,1) both;
}

@keyframes lap43-logo-enter {
    from { opacity: 0; transform: translateY(-18px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lap43-text-enter {
    from { opacity: 0; transform: translateY(20px); letter-spacing: 0.26em; }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .lap43-coming-soon {
        gap: 2.6rem;
        padding: 1.35rem;
    }

    .lap43-logo {
        width: min(94vw, 620px);
    }

    .lap43-coming-text {
        font-size: clamp(2.1rem, 12vw, 4rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lap43-logo,
    .lap43-coming-text {
        animation: none;
    }
}
