/* NAVBAR DESIGN */
.custom-navbar {
    background-color: #6C485C;
    /* sötétlila */
    padding: 15px 30px;
}

.gallery-section {
    padding: 80px 0;
    text-align: center;
    color: #6C485C;
}

.gallery-section h1 {
    font-size: 55px;
    font-family: 'Courgette', cursive;
    margin-bottom: 10px;
}

.gallery-section .subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(0, 0, 0, 0.6);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.gallery-item a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Reszponzív finomítás */
@media (max-width: 576px) {
    .gallery-item img {
        height: 200px;
    }
}