body {
    width: 100%;
    min-height: 100vh;
    background-image: url('/assets/img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.image-button {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.image-button img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hover */
.image-button:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    filter: brightness(1.05);
}

/* Active (kattintás) */
.image-button:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mobilon hover ne legyen túl agresszív */
@media (hover: none) {
    .image-button:hover {
        transform: none;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        filter: none;
    }
}
.footer-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #0d6efd;
    text-decoration: underline;
}