@import url('../style.css');

:root {
    --theme-primary: #3b82f6;
    /* Blue */
    --theme-secondary: #e2e8f0;
    /* Slate 200 */
    --theme-accent: #0ea5e9;
    /* Sky */
    --bg-dark: #020617;
    /* Slate 950 */
}

body {
    background-color: var(--bg-dark);
}

/* Clear Global Hub BGs */
body::before,
body::after {
    display: none;
}

/* Structured Grid Background */
body {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Floating Task Cards / Checkboxes */
.bg-task {
    position: fixed;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    padding: 10px;
    width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: -1;
    opacity: 0.5;
    animation: floatUp 20s linear infinite;
}

.bg-task::before {
    content: '';
    width: 15px;
    height: 15px;
    border: 2px solid var(--theme-accent);
    border-radius: 4px;
}

.bg-task::after {
    content: '';
    width: 80%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.t1 {
    bottom: -50px;
    left: 10%;
    animation-duration: 25s;
    transform: scale(0.8);
}

.t2 {
    bottom: -50px;
    left: 80%;
    animation-duration: 18s;
    animation-delay: 5s;
    transform: scale(0.9);
}

.t3 {
    bottom: -50px;
    left: 40%;
    animation-duration: 30s;
    animation-delay: 2s;
    opacity: 0.3;
}

/* Success Checkmarks appearing */
.success-check {
    position: fixed;
    color: #10b981;
    /* Green */
    font-size: 1.5rem;
    opacity: 0;
    z-index: -1;
    animation: popCheck 6s infinite;
}

.c1 {
    top: 20%;
    left: 15%;
    animation-delay: 1s;
}

.c2 {
    top: 60%;
    right: 10%;
    animation-delay: 4s;
}

.c3 {
    bottom: 30%;
    left: 50%;
    animation-delay: 2.5s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-110vh);
        opacity: 0;
    }
}

@keyframes popCheck {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    20% {
        transform: scale(1.2);
        opacity: 1;
    }

    30% {
        transform: scale(1);
        opacity: 1;
    }

    80% {
        transform: scale(1);
        opacity: 0;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Clock/Schedule Line */


header.hero h1 {
    background: linear-gradient(to right, #e2e8f0, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}