/* Basic reset */
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Updated body with fixes */
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* FIX #1: Added height: 100% to enable vertical centering */
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* FIX #2: More noticeable gradient colors */
    background: linear-gradient(-45deg, #d3dce6, #f0f2f5, #c7d3e0, #e9edf2);
    background-size: 400% 400%;
    animation: gradient-animation 15s ease infinite;
}

/* Keyframe animation for the gradient */
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Container for the splash content */
.splash-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo styling (using the background-image method) */
.logo {
    background-image: url('img/ChuckAI.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 400px;
    height: 80px;  /* Adjust height to match logo aspect ratio */
    margin-bottom: 2rem;
}

/* "Coming Soon" text styling */
.coming-soon-text {
    font-size: 1.25rem;
    font-weight: 400;
    color: #5a5a5a;
    letter-spacing: 4px;
    text-transform: uppercase;
}
