/* Footer */
.site-footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: var(--accent-color);
    opacity: 0.8;
    width: 100%;
    margin-top: auto;
    padding-bottom: 30px;
}

/* Heartbeat for the heart in footer */
.site-footer p span {
    display: inline-block;
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }
}

/* Ensure body flex behavior supports sticky footer effect correctly */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 480px) {
    .site-footer {
        position: relative;
        bottom: auto;
        padding-top: 40px;
    }
}