/* =========================
   SHARED FLOAT-IN ANIMATION
   ========================= */

.float-in {
    animation: floatIn 0.8s ease-out both;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =========================
   SHARED BUTTON STYLES
   ========================= */

.button {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 18px;

    padding: 14px 28px;
    border-radius: 12px;
    border: none;

    cursor: pointer;
    background-color: #ff1a66;
    color: white;

    transition:
        background-color 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.15s ease;

    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Hover = lift + darker */
.button:hover {
    background-color: #e6005c;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

/* Click = pressed */
.button:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* =========================
   BUTTON POP-IN (OPTIONAL)
   ========================= */

.button-pop {
    animation: buttonPop 0.4s ease-out both;
}

@keyframes buttonPop {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}