#skiptomain *{
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    top: auto;
    overflow: hidden;
}
/* KITÖLTENI - Blokkok elkerülése*/


#skiptomain a:focus {
    position: static;
    width: auto;
    height: auto;
}
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: var(--secondary-color);
    padding: 10px;
    border-bottom: 2px solid var(--text-color);
}

.hamburger {
    display: none;
    font-size: 2em;
    cursor: pointer;
    margin-right: auto;
    padding: 0 15px;
    color: var(--text-color);
}

.menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.1em;
    padding: 10px;
    transition: color 0.3s ease;
}

.menu li a:hover,
.menu li a:focus {
    color: var(--text-color);
}

.menu li a.active {
    text-decoration: underline;
    color: var(--link-active);
}

#menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        background-color: var(--secondary-color);
    }

    #menu-toggle:checked + .hamburger + .menu {
        max-height: 300px;
    }

    .menu li {
        border-top: 1px solid var(--border-color);
        width: 100%;
        text-align: center;
    }
}
