/* Custom Breadcrumbs - CSS */

/* Alapértelmezett betűtípus */
* {
    font-family: 'Poppins', sans-serif;
}

/* Fő navigációs konténer */
.hm-nav-container {
    margin-bottom: 30px;
}

/* Lista */
.hm-lista {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

/* Lista elem */
.hm-elem {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.5;
}

/* Elválasztó */
.hm-elvalaszto {
    color: #95a5a6;
    font-size: 14px;
    padding: 0 8px;
    user-select: none;
}

/* Link */
.hm-link {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 0;
    position: relative;
}

.hm-link:hover {
    color: #2980b9;
}

.hm-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2980b9;
    transition: width 0.3s ease;
}

.hm-link:hover::after {
    width: 100%;
}

/* Főoldal elem */
.hm-fokeret .hm-link {
    font-weight: 600;
    color: #2c3e50;
}

.hm-fokeret .hm-link:hover {
    color: #3498db;
}

/* Aktív elem (aktuális oldal) */
.hm-aktiv {
    color: #7f8c8d;
}

.hm-aktiv-szoveg {
    font-weight: 500;
    color: #2c3e50;
    padding: 4px 0;
}

/* ===== RESZPONZÍV DESIGN ===== */

/* Tablet nézet */
@media (max-width: 1024px) {
    .hm-nav-container {
        margin-bottom: 25px;
    }
    
    .hm-elem,
    .hm-elvalaszto {
        font-size: 13px;
    }
}

/* Mobil nézet */
@media (max-width: 768px) {
    .hm-nav-container {
        margin-bottom: 20px;
    }
    
    .hm-lista {
        font-size: 12px;
    }
    
    .hm-elem,
    .hm-elvalaszto {
        font-size: 12px;
    }
    
    .hm-elvalaszto {
        padding: 0 5px;
    }
}


/* Mozgás csökkentése */
@media (prefers-reduced-motion: reduce) {
    .hm-link,
    .hm-link::after {
        transition: none;
    }
}

/* Printelhető nézet */
@media print {
    .hm-nav-container {
        box-shadow: none;
        margin-bottom: 20px;
    }
    
    .hm-link::after {
        display: none;
    }
}