/* style.css - for splash page */

body {
    margin: 0;
    font-family: Gill Sans,Gill Sans MT,Calibri,sans-serif !important;
    background: white;
}

.container {
    min-height: 100vh;
    min-height: 100dvh; /* Fix for mobile Safari viewport resizing */

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

    padding: 20px;

    animation: fadeIn 1.2s ease-out;
}

/* Responsive logo */
.logo {
    width: clamp(220px, 60vw, 500px);
    height: auto;
    margin-bottom: 40px;

    animation:
        logoFloat 1.2s ease-out,
        logoBreath 6s ease-in-out infinite 1.2s;

    user-select: none;
    -webkit-user-drag: none;
}

h1 {
    font-size: clamp(28px, 5vw, 48px);
    margin: 0 0 40px 0;
}

.copyright {
    font-size: 14px;
    color: #666;
}

/* Animations */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes logoFloat {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoBreath {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}