/*
    Theme Name: Kaitlin V.
    Template: Divi
    Version: 1.0.0
*/

:root {
    --primary: var(--blue);
    --secondary: var(--mid);
    --blue: #3f9e9e;
    --white: #f9f9f9;
    --black: #191919;
    --dark: #3d3d4c;
    --mid: #9a9ea5;
    --light: #dcdee2;
}

/* Selection */
::selection {
    background-color: var(--primary);
    color: var(--white);
}

/* Big responsive title */
.wip-title {
    font-size: clamp(48px, 10vw, 178px);
    font-weight: 999;
    line-height: 0.7em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, #ccc, #fff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shimmer 4s infinite linear;
    margin-bottom: 1rem;
    transition: text-shadow 0.3s ease, transform 0.3s ease;
}

/* Hover glow effect */
.wip-title:hover {
    text-shadow: 
    0 0 10px #ffffff46,
    0 0 20px rgba(0, 255, 255, 0.541),
    0 0 40px rgba(0, 255, 255, 0.288),
    0 0 80px rgba(0, 255, 255, 0.185);
    transform: scale(1.05);
}

/* Sub-blurb */
.wip-blurb {
    display: block;
    font-size: 24px;
    opacity: 0;
    animation: fadeIn 2s 1.5s forwards, float 3s ease-in-out infinite;
    display: inline-block;
    border-radius: 8px;
    color: #fff;
}

/* Effects */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
}