/* GSAP Preloader - Placeholder Style */

body, html { 
    margin: 0; 
    padding: 0; 
    width: 100%; 
    height: 100%; 
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.mask {
    height: clamp(3rem, 10vw, 8rem); /* Height of ONE line of text */
    overflow: hidden; /* Hides the other words */
    position: relative;
}

.text-strip {
    /* GSAP will animate this up */
}

.word {
    height: clamp(3rem, 10vw, 8rem); /* Must match .mask height */
    line-height: clamp(3rem, 10vw, 8rem);
    font-family: "Inter", sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    text-align: center;
    color: #ffffff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .mask {
        height: clamp(2.5rem, 12vw, 5rem);
    }
    
    .word {
        height: clamp(2.5rem, 12vw, 5rem);
        line-height: clamp(2.5rem, 12vw, 5rem);
        font-size: clamp(2.5rem, 12vw, 5rem);
    }
}
