/* Alapértelmezett beállítások */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #f8f9fa;
    color: #333;
}

/* Cookie banner stílus */
.cookie-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #343a40;
    color: #fff;
    text-align: center;
    padding: 10px;
    z-index: 1000;
}

/* Animációk */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Galéria hover effektus (masonry hatás) */
#masonryGallery img {
    transition: transform 0.3s ease;
}
#masonryGallery img:hover {
    transform: scale(1.05);
}

/* További reszponzív finomhangolások szükség szerint */
