:root {
    --frame-color: #fcf7f0;
    --bg-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-color);
}

.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

#svg-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#hero-svg {
    width: 100%;
    height: auto;
    filter: blur(25px);
    opacity: 0;
    
    animation: 
        focusIn 2s ease-out forwards,
        float 5s ease-in-out 2s infinite;

    pointer-events: none;

    will-change: filter, transform, stroke;
    transform: translateZ(0); 
}

#hero-svg path {
    pointer-events: visiblePainted; 
    cursor: pointer;
}

@keyframes focusIn {
    from { 
        filter: blur(25px); 
        opacity: 0; 
        transform: scale(0.85); 
    }
    to { 
        filter: blur(0px); 
        opacity: 1; 
        transform: scale(1); 
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}