/* ==============================
   STYLE GENERAL
============================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;

    min-height: 100vh;

    background: #111;
    color: #eee;

    font-family: "Courier New", monospace;
}


/* ==============================
   ACCUEIL
============================== */

.home {
    min-height: 100vh;

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

    text-align: center;

    position: relative;

    padding: 25px;
}


.home-content {
    width: 100%;
    max-width: 600px;
}


/* ==============================
   TITRE
============================== */

.site-title {
    font-size: clamp(32px, 8vw, 60px);

    font-weight: normal;

    margin-bottom: 50px;
}


/* ==============================
   BOUTONS
============================== */

button {
    font-family: inherit;

    cursor: pointer;

    border: none;

    background: none;

    color: inherit;
}


.emoji-button {
    font-size: 28px;

    padding: 10px;

    margin-bottom: 20px;

    transition: transform 0.2s;
}


.emoji-button:hover {
    transform: scale(1.2);
}


.enter-button {
    border: 1px solid #777;

    padding: 12px 25px;

    font-size: 17px;

    transition: 0.2s;
}


.enter-button:hover {
    background: #eee;

    color: #111;
}


/* ==============================
   TEXTE
============================== */

.intro-text {
    font-size: 17px;

    line-height: 1.6;

    margin: 20px auto 30px;

    max-width: 500px;
}


.warning-text {
    min-height: 25px;

    max-width: 500px;

    margin: 0 auto 20px;

    line-height: 1.5;

    font-size: 15px;

    color: #ccc;
}


/* ==============================
   FLEUR
============================== */

.flower-button {
    position: fixed;

    bottom: 25px;

    left: 25px;

    font-size: 28px;

    transition: transform 0.2s;
}


.flower-button:hover {
    transform: scale(1.2);
}


/* ==============================
   SIGNATURE
============================== */

.signature {
    position: fixed;

    bottom: 15px;

    right: 18px;

    color: #666;

    font-size: 13px;
}


/* ==============================
   FLEURS QUI VOLENT
============================== */

.floating-flower {
    position: fixed;

    pointer-events: none;

    z-index: 9999;

    font-size: 25px;

    animation: flowerFly 2.5s ease-out forwards;
}


@keyframes flowerFly {

    0% {
        transform:
            translate(0, 0)
            rotate(0deg)
            scale(0.5);

        opacity: 1;
    }

    100% {
        transform:
            translate(
                var(--x),
                var(--y)
            )
            rotate(360deg)
            scale(1.5);

        opacity: 0;
    }
}


/* ==============================
   IPHONE
============================== */

@media (max-width: 600px) {

    .site-title {
        margin-bottom: 40px;
    }

    .intro-text {
        font-size: 16px;
    }

}
