/* preload.css - Recreated */

body {
    /* Styles for body if needed during preload, but generally handled by styles.css */
}

/* Inline SVG for clip path definition - Hide it */
.clip-svg {
    width: 0;
    height: 0;
    position: absolute;
}

/* Loader container */
.loader-wrap {
    position: fixed;
    z-index: 9999;
    height: 100vh;
    width: 100vw;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Match body background color using the variable from styles.css */
    background-color: var(--color-accent-3);
    opacity: 1;
    /* Reference the SVG clip path */
    clip-path: url(#loaderClip);
    box-sizing: border-box;
    flex-direction: column; /* Stack logo and text vertically */
}

/* Loader heading container (this is animated by JS) */
.loader-wrap .loader-wrap-heading {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Initial state - controlled by JS */
    opacity: 0; /* JS starts animation from here */
    transform: translateY(20px); /* JS starts animation from here */
}

/* Loading text styles */
.loader-wrap .load-text {
    font-family: 'Teko', sans-serif;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 15px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}

/* Individual text spans */
.load-text span {
    display: inline-block;
    opacity: 1; /* Should be visible inside the heading */
    position: relative;
    font-family: 'Teko', sans-serif;
}

/* Logo styles */
.loader-logo {
    display: block;
    width: 450px;
    height: auto;
    margin-bottom: 2rem;
    opacity: 1; /* Should be visible inside the heading */
    position: relative;
}

/* Page content wrapper (revealed after loader) */
#page-content {
    /* Should be visible by default, hidden only by the loader overlay */
    transform: translateY(0); /* Start at final position */
} 